@font-face {
  font-family: "Gotham";
  src: url("/assets/fonts/Gotham-Medium.otf");
  font-style: normal;
  font-weight: normal;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Gotham", sans-serif !important;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.heart-container {
  margin: 0 auto;
  padding: 56px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 36px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.heart-container .load-text {
  display: inline-block;
  margin-left: 25px;
  font-size: 25px;
}

.heart {
  background-color: red;
  width: 50px;
  height: 50px;
  position: relative;
  transform: rotate(45deg);
  animation: animateHeart 1.2s infinite;
}
.heart::before,
.heart::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: red;
  border-radius: 50%;
}
.heart::before {
  left: -25px;
}
.heart::after {
  top: -25px;
}
@keyframes animateHeart {
  0% {
    transform: rotate(45deg) scale(0.8);
  }
  5% {
    transform: rotate(45deg) scale(0.9);
  }
  10% {
    transform: rotate(45deg) scale(0.8);
  }
  15% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(0.8);
  }
  100% {
    transform: rotate(45deg) scale(0.8);
  }
}

.custom-container {
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 24px;
  padding-left: 180px;
}

@media (max-width: 768px) {
  .custom-container {
    padding-left: 24px;
    justify-content: center;
  }
}

.row.fullwidth {
  width: 100%;
}

form {
  position: relative;
  max-width: 592px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
  box-shadow: 4px 4px 24px rgba(170, 177, 201, 0.1);
  padding: 56px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 36px;
  font-family: Gotham;
}

#error-box {
  font-size: 12px;
  color: red;
  max-height: 250px;
  overflow: auto;
}

.back-btn {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  box-shadow: 0 4px 32px rgb(83 121 180 / 20%);
  cursor: pointer;
}

@media (max-width: 768px) {
  form {
    padding: 40px 36px;
  }
}

.title {
  font-family: Gotham;
  color: #468EE7;
  font-size: 23px;
  padding-bottom: 56px;
}

.title.no-margin, .form-title.no-margin {
  margin-left: -10px;
  margin-right: -10px;
}

.form-title {
  font-family: Gotham;
  font-size: 26px;
  padding-bottom: 40px;
}

label {
  margin-bottom: 0 !important;
}

.input {
  color: #363A43;
  box-sizing: border-box;
  margin: 8px 0;
  width: 100%;
  outline: none;
  font-size: 12px;
  background: #fcfcfc;
  border: 1px solid #eff1f7;
  border-radius: 6px;
  padding: 0 17px;
  height: 40px;
  transition: 0.3s border;
}

.input::placeholder {
  color: #7D89A5;
  opacity: 0.7 !important;
  font-size: 12px;
}

.input:focus:invalid {
  border: 1px solid red;
}

.password-container {
  position: relative;
}

.password-container .eye-icon {
  position: absolute;
  top: 20px;
  right: 16px;
  height: 16px;
}

.form-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 40px;
}

.controls {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.controls.no-margin {
  padding-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

.forgot-password {
  cursor: pointer;
  font-size: 12px;
  color: #7D89A5;
  text-decoration: underline;
  text-transform: capitalize;
  white-space: nowrap;
  color: #7D89A5;

}

.submit-btn {
  outline: none;
  cursor: pointer;
  color: #ffffff;
  border: none;
  width: 210px;
  height: 54px;
  font-size: 14px;
  font-weight: bold;
  background-color: #468EE7;
  border-radius: 75px;
  text-transform: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .submit-btn {
    width: 100%;
  }

  .form-footer {
    padding-top: 40px;
    margin: 0 auto;
  }
}

.form-footer-text {
  color: #000;
  font-family: Gotham;
}

.form-footer-link {
  cursor: pointer;
  font-weight: bold;
  padding-left: 5px;
  margin-top: -2px;
  color: #468EE7;
  text-decoration: underline;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  color: #7D89A5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #F8F8FE;
  border: 1px solid #B8BDDA;
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.row .col-md-6 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.step-active {
  display: flex;
  flex-direction: column;
}

.step-disabled {
  height: 0;
  display: none;
}

.btn-hidden {
  display: none;
}

.col.no-padding {
  padding-left: 5px;
  padding-right: 5px;
}


.practice-not-found-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  padding-left: 160px;
}

@media (max-width: 1060px) {
  .practice-not-found-container {
    padding-left: 24px;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .practice-not-found-container {
    padding: 58px 24px 24px;
    justify-content: flex-start;
  }
}

.practice-not-found-container .not-found-form {
  max-width: 592px;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 4px 4px 24px rgba(170, 177, 201, 0.1);
  border-radius: 16px;
  padding: 56px;
  font-family: "Gotham";
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form {
    padding: 40px 24px;
  }
}

.practice-not-found-container .not-found-form .title {
  font-family: "Gotham";
  font-weight: bold;
  color: #468ee7;
  font-size: 23px;
  padding-bottom: 56px;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form .title {
    font-size: 20px;
  }
}

.practice-not-found-container .not-found-form .form-title {
  font-family: "Gotham";
  font-size: 26px;
  padding-bottom: 16px;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form .form-title {
    font-size: 24px;
  }
}

.practice-not-found-container .not-found-form .form-subtitle {
  font-family: "Gotham";
  font-size: 16px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form .form-subtitle {
    font-size: 16px;
  }
}

.practice-not-found-container .not-found-form .form-controls {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form .form-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

.practice-not-found-container .not-found-form .form-controls div {
  display: flex;
  align-items: center;
  font-family: "Gotham";
  font-size: 14px;
}

.practice-not-found-container .not-found-form .form-controls div a {
  color: #468ee7;
  text-decoration: underline;
  text-transform: none;
  font-weight: bold;
}

.practice-not-found-container .not-found-form .form-controls .btn {
  color: #fff;
  font-family: "Gotham";
  border: none;
  width: 216px;
  height: 54px;
  font-size: 14px;
  background-color: #468ee7;
  border-radius: 75px;
  text-transform: none;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  .practice-not-found-container .not-found-form .form-controls .btn {
    width: 100%;
    margin-bottom: 30px;
  }
}

.practice-not-found-container .not-found-form .form-controls .btn.Mui-disabled {
  opacity: 0.5;
}

.practice-not-found-container .not-found-form .form-controls .btn:hover {
  opacity: 0.75;
}

.practice-not-found-container .not-found-form .sign-in-link {
  margin-left: 5px;
}

.practice-not-found-container .not-found-form .sign-in-link:hover {
  background-color: transparent;
}
