/* ==========================================================================
   PROMPTLENS — AUTH PAGES
   ========================================================================== */

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .auth-shell { grid-template-columns: 1fr; } }

.auth-visual {
  background: var(--bg-void);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-8);
  overflow: hidden;
  border-right: 1px solid var(--line-hair);
}
@media (max-width: 900px) { .auth-visual { display: none; } }
.auth-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-scan-glow), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(255,107,74,0.08), transparent 40%);
}
.auth-visual-content { position: relative; z-index: 1; max-width: 400px; }
.auth-visual-quote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; margin-bottom: var(--sp-5); }

.auth-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.auth-card { width: 100%; max-width: 400px; }
.auth-card .brand { margin-bottom: var(--sp-6); justify-content: center; }
.auth-card h2 { text-align: center; font-size: var(--fs-display-m); margin-bottom: var(--sp-2); }
.auth-card .subtitle { text-align: center; margin-bottom: var(--sp-6); }

.auth-divider { display: flex; align-items: center; gap: var(--sp-3); margin-block: var(--sp-5); color: var(--ink-tertiary); font-size: var(--fs-caption); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line-hair); }

.social-btn {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  width: 100%; padding: 0.7rem; border-radius: var(--r-md);
  border: 1px solid var(--line-hair); background: var(--bg-surface-2);
  color: var(--ink-primary); font-weight: 600; font-size: var(--fs-body);
  margin-bottom: var(--sp-3);
}
.social-btn:hover { border-color: var(--line-strong); }

.auth-footer-link { text-align: center; margin-top: var(--sp-5); font-size: var(--fs-caption); color: var(--ink-secondary); }
.auth-footer-link a { color: var(--accent-scan); font-weight: 600; }

.bonus-banner {
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--accent-scan-glow); border: 1px solid rgba(201,243,29,0.3);
  border-radius: var(--r-md); padding: var(--sp-4); margin-bottom: var(--sp-5);
}
