.success-mainContainer,
.fail-mainContainer {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.success-button {
  background-color: #0c6fff;
  border: none;
  outline: none;
  padding: 20px;
  width: 150px;
  font-family: inherit;
  font-weight: 500;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-text {
  margin-bottom: 0px;
}

.success-subtitle {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #757575;
}

.success-button:hover {
  background-color: #3586ff;
}

.fail-text {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
}

.fail-subtitle {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #757575;
}

.fail-button {
  background-color: #f6f6f6;
  border: none;
  outline: none;
  padding: 20px;
  width: 150px;
  font-family: inherit;
  font-weight: 500;
  color: #000000;
  border: 1px solid #a9a9a9;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fail-button:hover {
  background-color: #e7e7e7;
}

.success-Icon {
  width: 110px;
}
