/* auth.css — shared layout for the logged-out auth surfaces (login / signup /
   reset). Extracted from the V1 "Sign In" handoff. Unlike the handoff (which
   showed all three states side by side in a grid), production renders ONE
   centered card per page, so .au-wrap is sized for a single column. */

body.da-app {
  background:
    radial-gradient(900px 460px at 50% -160px, var(--color-sage-pale), transparent 70%),
    var(--color-base);
  min-height: 100vh;
}

.au-wrap {
  width: min(440px, 100% - 40px);
  margin-inline: auto;
  padding: 48px 0 64px;
}

.au-brand { display: flex; justify-content: center; margin-bottom: 32px; }
.au-brand img { height: 28px; }

.au-card {
  background: var(--color-white);
  border: 1px solid var(--color-forest-pale);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 32px;
}
.au-card h1 {
  font-size: var(--text-h4);
  font-weight: 800;
  color: var(--color-forest);
  letter-spacing: -0.01em;
}
.au-card p.sub {
  font-size: var(--text-body-s);
  color: var(--color-warm-gray);
  margin-top: 6px;
  line-height: 1.5;
}

.au-label-state {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--text-caption); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-sage); margin-bottom: 16px;
}

.au-foot {
  text-align: center; font-size: var(--text-body-s);
  color: var(--color-warm-gray); margin-top: 22px;
}
.au-foot a { color: var(--color-forest); font-weight: 600; text-decoration: none; }
.au-foot a:hover { text-decoration: underline; }
