/* ── Auth Page ────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
}
.auth-left {
  background: linear-gradient(135deg, #0B1220 0%, #0d2159 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.25) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.auth-left-content { position: relative; z-index: 1; max-width: 400px; }
.auth-logo {
  font-family: 'Russo One', sans-serif;
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  text-decoration: none;
}
.auth-right .nav-logo-img {
  height: 144px;
  width: auto;
  display: block;
  object-fit: contain;
}
.auth-logo-img {
  height: 160px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.auth-tagline {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.auth-tagline span { color: #60a5fa; }
.auth-desc { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.6; }
.auth-features { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.auth-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.auth-feat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(26,86,219,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.auth-right {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow-y: auto;
}
.auth-form-wrap { width: 100%; max-width: 380px; }
.auth-form-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.auth-form-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-switch {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.auth-switch a { font-weight: 600; }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 12px; margin: 8px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.consent-group { display: flex; flex-direction: column; gap: 10px; }
.legal-note { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; }
.legal-note a { color: var(--primary); }

@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 24px; }
}
