:root {
  color-scheme: dark;
  --chrome: #0b0b0c;
  --canvas: #1a1a1c;
  --panel: #28292a;
  --raised: #3a3a3c;
  --border: #57585b;
  --text: #f5f5f7;
  --muted: #bababc;
  --lavender: #aaa9ff;
  --amber: #fdb462;
  --amber-hover: #feca94;
  --error: #f19ba5;
}
* { box-sizing: border-box; }
body {
  display: grid;
  min-height: 100dvh;
  margin: 0;
  place-items: center;
  padding: 24px;
  background: var(--canvas);
  color: var(--text);
  font: 16px/1.6 Geist, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.card {
  width: min(100%, 460px);
  padding: 32px;
  border: 1px solid rgb(240 240 246 / 24%);
  border-radius: 8px;
  background: var(--panel);
}
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; color: var(--text); font-weight: 650; text-decoration: none; }
.brand img { width: 28px; height: 28px; }
h1 { margin: 24px 0 0; font-size: 28px; line-height: 1.3; letter-spacing: -.03em; }
p { overflow-wrap: anywhere; }
form { margin: 12px 0; }
button, .button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--amber);
  border-radius: 4px;
  background: var(--amber);
  color: #141416;
  font: inherit;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.secondary { border-color: var(--border); background: transparent; color: var(--text); }
button:hover, .button:hover { border-color: var(--amber-hover); background: var(--amber-hover); }
.secondary:hover { background: var(--raised); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; }
.note { color: var(--muted); }
.error { color: var(--error); }
@media (max-width: 480px) {
  body { padding: 16px; }
  .card { padding: 24px; }
}
@font-face {
  font-family: Geist;
  src: url("brand/fonts/Geist.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
