@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Italiana&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** SP developers resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
/* placeholder mixin */
/* how to use this variabile*/
/* .forms{
   @include placeholder{
    opacity: 1;color: #a5aeb7;
  } */
/* @include transition (.2s ease-out all); */
/*    @include flexbox();
    @include justify-content (center);*/
/* Using variables from home.css */
.login-modal .modal-content {
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.login-section {
  position: relative;
}

.login-section .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.login-section .btn-close:hover {
  opacity: 1;
}

.login-section .right-panel {
  width: 100%;
  background-color: var(--white);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .login-section .right-panel {
    padding: 30px;
  }
}

.login-section .right-panel .login-box {
  width: 100%;
  max-width: 400px;
}

.login-section .right-panel.signup .login-box {
  max-width: 100%;
}

.login-section .right-panel .login-box .welcome-title {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-section .right-panel .login-box .welcome-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.form-grp {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}

.forgot-txt {
  text-align: right;
  margin-top: 1rem;
}

.forgot-link {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.forgot-link:hover {
  color: var(--primary-dark);
}

/* Payment Modal Specifics */
.payment-info {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.payment-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.payment-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.payment-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.payment-features li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .login-section .right-panel .login-box .welcome-desc {
    font-size: 0.875rem;
  }
}

/* OTP Input Group */
.otp-input-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.otp-input {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.otp-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .payment-price {
    font-size: 2.5rem;
  }

  .otp-input {
    height: 45px;
    font-size: 1rem;
  }
}

.login-section .right-panel .two-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-section .right-panel .two-btn .btn {
  width: 48%;
}
.login-section .right-panel .two-btn .btn.cancel-btn {
  color: var(--text-main) !important;
}
@media (max-width: 1481px) {
  .login-section.signup-sec .content-sec {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1199px) {
  .login-section.signup-sec .content-sec {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .login-section.signup-sec .content-sec {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.login-section.signup-sec .signup {
  width: 820px;
  max-width: 820px;
}
@media (max-width: 1679px) {
  .login-section.signup-sec .signup {
    width: 760px;
    max-width: 760px;
  }
}
@media (max-width: 1481px) {
  .login-section.signup-sec .signup {
    width: 60%;
    max-width: 60%;
  }
}
@media (max-width: 1024px) {
  .login-section.signup-sec .signup {
    width: 55%;
    max-width: 55%;
  }
}
@media (max-width: 804px) {
  .login-section.signup-sec .signup {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .login-section.signup-sec .signup .form-inner {
    height: 500px;
    overflow-y: auto;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .login-section.signup-sec .signup .form-inner {
    height: unset;
  }
}

@media (max-width: 1024px) {
  .login-section.signup-sec .signup .form-grp {
    width: 100%;
  }
}
.login-section.signup-sec .signup .form-grp .show-password {
  right: 25px;
}
@media (max-width: 479px) {
  .login-section.signup-sec .signup .two-btn {
    flex-wrap: wrap;
  }
  .login-section.signup-sec .signup .two-btn .btn {
    width: 100%;
    margin-top: 10px;
  }
}
.login-section.signup-sec .signup .form-check .form-check-label {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 1679px) {
  .login-section.signup-sec .signup .form-check .form-check-label {
    font-size: 14px;
  }
}
@media (max-width: 1481px) {
  .login-section.signup-sec .signup .form-check .form-check-label {
    font-size: 13px;
  }
}
.login-section.signup-sec .signup .custom-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  margin-right: 10px;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
}
.login-section.signup-sec
  .signup
  .custom-checkbox
  .form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.login-section.signup-sec .signup .custom-checkbox .form-check-label {
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
}

/*# sourceMappingURL=login.css.map */
