/* ================================================================
   AUTH SCREENS
================================================================ */
#auth-screen {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.auth-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 26rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.auth-logo-mark {
  width: 2.25rem; height: 2.25rem;
  background: var(--ink);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.auth-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.auth-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.auth-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.auth-toggle {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--mid);
}
.auth-toggle a {
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}
.auth-toggle a:hover { text-decoration: underline; }

/* Steps for signup */
.step-dots {
  display: flex; gap: 0.4rem; margin-bottom: 1.75rem;
}
.step-dot {
  height: 0.25rem; border-radius: 9999px; background: var(--border);
  flex: 1; transition: background var(--t);
}
.step-dot.active { background: var(--gold); }

