/* ============================================================
   Auth Pages CSS
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg);
}

.auth-visual {
  background: #00010f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.auth-visual::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.auth-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.auth-logo-icon {
  width: 48px;
  height: 48px;
  background: #F5A623;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1E3A5F;
}

.auth-logo-text {
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.auth-logo-text span {
  color: #F5A623;
}

.auth-tagline {
  color: rgba(255, 255, 255, .9);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-tagline span {
  color: #F5A623;
}

.auth-desc {
  color: rgba(255, 255, 255, .65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

.auth-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.auth-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #F5A623;
}

.auth-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .6);
}

.auth-form-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow-y: auto;
}

.auth-form-box {
  width: 100%;
  max-width: 440px;
}

.auth-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-form-header h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.auth-form-header p {
  color: #64748B;
  font-size: 0.9rem;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #E2E8F0;
}

.auth-divider span {
  background: white;
  padding: 0 12px;
  position: relative;
  color: #94A3B8;
  font-size: 0.8rem;
}

.auth-footer-link {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: #64748B;
}

.auth-footer-link a {
  color: #1E3A5F;
  font-weight: 600;
}

@media (max-width: 768px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-form-area {
    padding: 32px 24px;
    justify-content: flex-start;
    padding-top: 60px;
  }
}