/* Auth pages: signup, login, onboarding */

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--black);
}

.auth-card {
  width: 100%;
  max-width: 460px;
}

.auth-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
}

.auth-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--white);
}

.auth-sub {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-box {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.auth-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: 0.88rem;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.auth-divider {
  text-align: center;
  color: var(--white-muted);
  font-size: 0.85rem;
  margin: 20px 0 14px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--white-muted);
}

.auth-footer a { color: var(--gold); text-decoration: none; }

.btn-full { width: 100%; display: block; text-align: center; }

.btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.auth-legal {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.auth-legal a { color: var(--gold); text-decoration: none; }