.auth-page-card__mask {
  position: absolute;
  top: -32px;
  right: -32px;
  bottom: -32px;
  left: 40%;
  border-radius: 64px;
  background: var(--gray-200);
  z-index: 1;
}
.auth-page-card .auth-register-method-item label {
  height: 40px;
  border-radius: 8px;
  color: var(--gray-500);
  background-color: var(--white);
  transition: all 0.2s ease;
}
.auth-page-card .auth-register-method-item label:hover {
  background-color: var(--gray-100);
}
.auth-page-card .auth-register-method-item input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.auth-page-card .auth-register-method-item input:checked ~ label {
  color: var(--white);
  background-color: var(--primary);
}
.auth-page-card .password-wrapper {
  position: relative;
}
.auth-page-card .password-wrapper .form-control {
  padding-right: 44px !important;
}
.auth-page-card .password-wrapper input[type=password]::-ms-reveal,
.auth-page-card .password-wrapper input[type=password]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.rtl .auth-page-card .password-wrapper .form-control {
  padding-right: 12px !important;
  padding-left: 44px !important;
}
.auth-page-card .password-input-visibility {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gray-500);
  line-height: 1;
}
.auth-page-card .password-input-visibility:hover {
  color: var(--dark);
}
.auth-page-card .password-input-visibility .icons-eye,
.auth-page-card .password-input-visibility .icons-eye-slash {
  width: 20px;
  height: 20px;
}
.rtl .auth-page-card .password-input-visibility {
  right: auto;
  left: 12px;
}
.auth-page-card .auth-slider-container {
  min-height: 630px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.auth-page-card .auth-slider-container .auth-slider-image {
  width: 240px;
  height: 240px;
}

.auth-theme-slider-pagination {
  position: absolute;
  top: auto;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px !important;
}
.auth-theme-slider-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--primary);
  opacity: 0.4;
  transition-duration: 300ms;
}
.auth-theme-slider-pagination .swiper-pagination-bullet-active {
  width: 2rem;
  border-radius: 1.5rem;
  background-color: var(--primary);
  opacity: 1;
}

.auth-verification-code-field {
  width: 69px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  font-size: 24px;
  font-weight: 700;
  padding: 8px;
  text-align: center;
}

.resend-verification-code-timer .jst-hours {
  display: none;
}

.auth-page-form-container {
  height: 387px;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 991.98px) {
  .auth-page-form-container {
    height: auto;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
  }

  .auth-page-card .auth-register-method-item label {
    width: 100%;
    text-align: center;
  }
}
