/* login.html is the only page using this file — give the page a dark backdrop so
   any sliver between the viewport-height units (vh vs dvh) blends with the gradient
   instead of flashing the light body background. */
body { background: var(--royal-blue); }

.auth-wrap {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 34px 30px;
}

.auth-card .logo { justify-content: center; margin-bottom: 8px; }
.auth-card .logo .monogram { background: var(--white); }
.auth-card .logo .name { color: var(--accent); }

.auth-card h1 { font-size: 1.4rem; text-align: center; margin-bottom: 4px; }

.auth-footer { text-align: center; margin-top: 18px; font-size: 0.88rem; }

/* .auth-subtitle and .auth-alert now live in global.css (shared with the
   result-check page) so the two pages can't drift apart. */

@media (max-width: 480px) {
  .auth-wrap { padding: 16px; }
  .auth-card { padding: 26px 20px; }
}
