:root {
  color-scheme: dark;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #090d1d;
  color: #f5f6fa;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, #20284a 0, #090d1d 58%);
}

.card {
  width: min(100%, 440px);
  padding: 32px;
  border: 1px solid #394164;
  border-radius: 20px;
  background: rgba(15, 20, 42, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 8px;
  color: #ff6f68;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-size: 32px;
}

h2 {
  margin: 28px 0 8px;
  font-size: 18px;
}

p {
  line-height: 1.65;
}

.status {
  min-height: 3.3em;
  margin: 18px 0;
  color: #d0d5e0;
}

.status.error {
  color: #ff9d98;
}

.actions {
  display: grid;
  gap: 12px;
}

button,
.button-link {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: #ff5c58;
  color: #090d1d;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.secondary {
  border: 1px solid #59617f;
  background: transparent;
  color: #f5f6fa;
}

[hidden] {
  display: none;
}

.notice {
  margin: 24px 0 8px;
  color: #aab2c9;
  font-size: 14px;
}

.privacy-link {
  color: #d8dded;
}

.policy p {
  color: #c2c8da;
}

.updated {
  margin-top: 30px;
  font-size: 13px;
}
