@charset "UTF-8";
.form {
  background-color: #fff;
  padding: 15px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.form #AuthLoader {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  z-index: 99;
  opacity: 0.9;
  display: none;
}
.form #AuthLoader .spinner-border {
  margin: auto;
}
.form #AuthLoader.show {
  display: flex;
}
.form .top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #737598;
  font-size: 14px;
  padding: 0 2rem;
}
.form .top-menu a {
  color: #737598;
}
.form .top-menu .back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.form .top-menu .back i {
  font-size: 12px;
}
.form .login-type {
  display: flex;
  justify-content: start;
  align-items: center;
}
.form .login-type .login-radio .form-check {
  border: 1px solid #e0e0eb;
  color: var(--Ya-main);
  border-radius: 20px;
  padding: 8px 20px 8px 35px;
  margin-left: 0;
  cursor: pointer;
}
.form .login-type .login-radio .form-check label {
  cursor: pointer;
}
.form .form-container {
  padding: 0 5rem;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .form .form-container {
    padding: 0 1.5rem;
  }
}
.form .form-container .social {
  margin: auto;
  text-align: center;
  position: relative;
}
.form .form-container .social h3 {
  color: #202359;
}
.form .form-container .social .verify-caption {
  background-color: #f6f6f9;
  padding: 6px 12px;
  border-radius: 10px;
}
.form .form-container .social .social-icons {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
}
.form .form-container .social .social-icons a {
  background-color: #f6f6f9;
  padding: 15px !important;
  width: 30%;
}
.form .form-container .social .social-icons a:hover {
  color: #fff !important;
  background-color: #c7c7c7 !important;
}
.form .form-container .social hr {
  border: 0;
  height: 2px;
  background-color: #e0e0eb;
}
.form .form-container .social .divider-title {
  position: absolute;
  display: block;
  bottom: -12px;
  right: 0;
  left: 0;
  background-color: #fff;
  width: max-content;
  padding: 5px 25px;
  font-size: 14px;
  color: #737598;
  margin: auto;
}
.form .form-container .social.signup {
  margin-top: 3rem;
}
.form .form-container .inputs {
  margin: 3rem 0;
  /* Custom checkbox checked state */
  /* Custom checkbox checkmark */
}
.form .form-container .inputs input {
  height: 48px;
  border-radius: 12px !important;
  border: 1px solid #babbcf !important;
}
.form .form-container .inputs #loginform-rememberme {
  height: unset;
}
.form .form-container .inputs .login-rememberMe {
  margin-top: 5px;
}
.form .form-container .inputs .login-rememberMe .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}
.form .form-container .inputs .login-rememberMe #rememberMe {
  height: 16px;
  width: 16px;
  border-radius: 4px !important;
}
.form .form-container .inputs .login-rememberMe label,
.form .form-container .inputs .login-rememberMe a {
  font-size: 14px;
  color: #202359;
}
.form .form-container .inputs .login-rememberMe a {
  text-decoration: underline;
  cursor: pointer;
}
.form .form-container .inputs .btn-submit {
  width: 100%;
  background-color: var(--Ya-green);
  padding: 10px 1rem !important;
  margin-top: 3rem;
}
.form .form-container .inputs a.showPass,
.form .form-container .inputs .ksaIcon {
  display: block;
  position: absolute;
  top: 57px !important;
  transform: translate(0, -50%);
  color: inherit;
  left: unset;
  right: 10px;
}
[dir=rtl] .form .form-container .inputs a.showPass,
[dir=rtl] .form .form-container .inputs .ksaIcon {
  left: 10px;
}
[dir=rtl] .form .form-container .inputs a.showPass,
[dir=rtl] .form .form-container .inputs .ksaIcon {
  right: unset;
}
.form .form-container .inputs .rememberMe label {
  display: flex;
  font-size: 15px;
  align-items: center;
  gap: 5px;
  color: #202359;
}
.form .form-container .inputs .rememberMe .forgetPassword {
  color: #202359;
  font-size: 14px;
}
.form .form-container .inputs #loginform-rememberme {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 1px solid #c7c7c7;
  border-radius: 4px !important;
  outline: none;
  cursor: pointer;
  position: relative;
}
.form .form-container .inputs #loginform-rememberme:checked {
  background-color: transparent;
  border-color: #c7c7c7;
}
.form .form-container .inputs #loginform-rememberme:checked::before {
  content: "✓";
  /* Unicode checkmark symbol */
  color: #000;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form .form-container .inputs .validation-error {
  color: #dc3545;
  font-size: 12px;
}
.form .form-container .to-register {
  text-align: center;
  color: #202359;
}
.form .form-container .to-register a {
  text-decoration: underline !important;
}
.form .form-container .terms-condition-text {
  color: #202359;
  font-size: 15px;
  text-align: center;
}
.form .form-container .terms-condition-text a {
  color: #202359;
  text-decoration: underline !important;
}
.form .form-container .img-head {
  text-align: center;
  margin-top: 9rem;
  color: #202359;
}
.form .form-container .img-head h4 {
  margin-top: 2rem;
}

.loginBG {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #babbcf;
  overflow: hidden;
}
.loginBG .yaschools-logo {
  text-align: center;
  color: #202359;
  z-index: 10;
}
.loginBG .yaschools-logo img {
  width: 200px;
  margin-bottom: 2rem;
}
.loginBG .bg-img1 {
  position: absolute;
  width: 78%;
  top: 0;
  left: 0;
}
.loginBG .bg-img2 {
  position: absolute;
  width: 112.5%;
  top: 0;
  left: 0;
}
.loginBG .bg-img3 {
  width: 600px;
  position: absolute;
  left: 0;
  bottom: -25px;
}
.loginBG .bg-img4 {
  position: absolute;
  width: 112.5%;
  bottom: -90px;
  left: 0;
}

#VerifyPhone .form .form-container .img-head {
  margin-top: 0;
}
#VerifyPhone .form .form-container .img-head .phoneNum {
  direction: ltr;
  display: inline-block;
}
#VerifyPhone .OTP-inputs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  width: 80%;
  margin: auto;
  direction: ltr;
}
#VerifyPhone .OTP-inputs-container input {
  height: 50px !important;
  direction: inherit;
  padding: 5px !important;
  margin: auto;
  width: 50px;
  border-radius: 10px !important;
  font-size: 25px;
  text-align: center;
}
#VerifyPhone .resend-otp {
  display: flex;
  justify-content: space-between;
}
#VerifyPhone .resend-otp p {
  margin-bottom: 0;
  color: #202359;
}
#VerifyPhone .resend-otp button {
  color: #737598;
  border: unset;
  background: unset;
  padding: unset;
}
#VerifyPhone #VerifyOTPSpinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.5;
  display: none;
}
#VerifyPhone #VerifyOTPSpinner .spinner-border {
  left: 3%;
  top: 30%;
  position: absolute;
  width: 20px;
  height: 20px;
}

#completeData .form-container {
  padding-bottom: 10rem;
}
#completeData .card {
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 4px 0 #0000001f;
}
#completeData .bg-img {
  position: absolute;
  right: 50px;
  top: 0;
  width: 900px;
}
#completeData .divider {
  position: relative;
}
#completeData .divider .divider-title {
  background: #fff;
  position: absolute;
  top: 0;
  padding: 3px 17px;
  color: #737598;
  font-size: 14px;
}
#completeData .btn-submit {
  margin: auto;
  display: block;
  padding: 0.75rem 5rem !important;
  background-color: #202359;
  color: #fff !important;
  margin-top: 2rem;
}
#completeData .gender-radios {
  display: flex;
  justify-content: end;
  gap: 20px;
}
#completeData .gender-radios label {
  display: flex;
  align-items: center;
  gap: 5px;
}
#completeData .field-loginform-identity,
#completeData .field-loginform-gender {
  position: relative;
}
#completeData .field-loginform-identity .control-label,
#completeData .field-loginform-gender .control-label {
  position: absolute;
  top: 10px;
}
#completeData .social p {
  color: #737598;
}
#completeData .steps {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
}
#completeData .steps .img-container {
  background: #f6f6f9;
  padding: 1rem;
  border-radius: 50%;
  position: relative;
}
#completeData .steps .img-container img {
  width: 24px;
}
#completeData .steps .img-container.active {
  background: linear-gradient(321.63deg, #202359 17.22%, #5b63fb 213.94%);
  box-shadow: -11px 24px 34px -10px #c5e5ea;
}
#completeData .steps > :not(:first-child)::before {
  content: "........";
  font-size: 13px;
  position: absolute;
  left: 50%;
  right: -60px;
  width: 52px;
  top: 10px;
  color: #fff;
  border-bottom: 2px dotted #babbcf;
}
#completeData .field-completeprofile-gender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 47px;
}
#completeData .field-completeprofile-gender label {
  margin: 0;
}
#completeData .field-completeprofile-gender #completeprofile-gender input {
  height: unset;
}

#TeacherSignUp .form-container .social {
  margin-top: 4rem;
}
#TeacherSignUp .teacher-signup-checkout-form-list input {
  height: unset !important;
}
#TeacherSignUp .teacher-signup-checkout-form-list label {
  font-size: 14px;
}

.form-container {
  position: relative;
}

[v-cloak] {
  width: 40px;
  /* Adjust size as needed */
  height: 40px;
  /* Adjust size as needed */
  position: relative;
}

[v-cloak] > * {
  display: none;
}

[v-cloak]::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #007bff;
  /* Adjust color as needed */
  animation: spinner-animation 1s linear infinite;
}

@keyframes spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}