.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-input-visibility {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 0.2s ease;
}
.auth-page-card .password-input-visibility:hover {
  opacity: 0.7;
}
.auth-page-card .password-input-visibility svg {
  display: block;
}
.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;
}

.password-requirements {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.password-requirements .requirements-header {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #495057;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}
.password-requirements .requirements-header svg {
  flex-shrink: 0;
}
.password-requirements .requirements-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.password-requirements .requirement-item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: transparent;
}
.password-requirements .requirement-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.password-requirements .requirement-item .requirement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: bold;
  transition: all 0.2s ease;
  color: #adb5bd;
  flex-shrink: 0;
}
.password-requirements .requirement-item .requirement-text {
  flex: 1;
  line-height: 1.4;
  color: #6c757d;
  transition: all 0.2s ease;
  font-size: 13px;
}
