/* ============================================================
   AstroDesk — Auth screens
   ============================================================ */
.auth-wrap { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; background: var(--bg); }

.auth-brand {
  position: relative; overflow: hidden; padding: 56px clamp(40px, 5vw, 76px);
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(150deg, #2a1d63 0%, #4a32a8 44%, #6C4ED9 100%);
}
[data-accent="emerald"] .auth-brand { background: linear-gradient(150deg, #0c3a2a, #12664a, #1f9d6b); }
[data-accent="indigo"] .auth-brand { background: linear-gradient(150deg, #1c245e, #3343a8, #4f63d9); }
[data-accent="amber"] .auth-brand { background: linear-gradient(150deg, #4a2f08, #946218, #cc8a2a); }
[data-accent="rose"] .auth-brand { background: linear-gradient(150deg, #4a1228, #a23457, #d8527c); }
.auth-stars { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.auth-orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.auth-orbit span {
  position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.auth-orbit span:nth-child(1) { width: 460px; height: 460px; }
.auth-orbit span:nth-child(2) { width: 680px; height: 680px; border-color: rgba(255,255,255,.05); }
.auth-orbit span:nth-child(3) { width: 900px; height: 900px; border-color: rgba(255,255,255,.035); }

.auth-tagline { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.1; color: #fff; margin: 38px 0 18px; letter-spacing: -.01em; }
.auth-tagline em { font-style: italic; color: #e9deff; }
.auth-foot { display: flex; gap: 34px; margin-top: 44px; }
.auth-stat { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; }
.auth-statl { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .04em; margin-top: 2px; }

.auth-form-col { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px 24px; }
.auth-card { width: 100%; max-width: 400px; }
.auth-h1 { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -.02em; margin: 8px 0 6px; }

.pw-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: none; background: transparent; color: var(--text-faint); width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; }
.pw-eye:hover { color: var(--text); background: var(--surface-3); }
.link-btn { border: none; background: transparent; color: var(--accent); font-weight: 600; font-size: 13px; padding: 0; }
.link-btn:hover { text-decoration: underline; }

.auth-divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--text-faint); font-size: 12px; font-weight: 600; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
}
