/* The app's own field and accent, so the site reads as the same product.
   System fonts only: the auth pages hold a token in the URL fragment, and
   every external request (a web font included) is one more party that could
   be handed the page. */
:root {
  --field: #070906;
  --surface: #11150e;
  --ink: #f4f6ef;
  --ink-soft: #a7ae9d;
  --accent: #b6e62e;
  --border: #262d20;
  --danger: #ff6b5b;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--field);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.wordmark {
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.wordmark span {
  color: var(--accent);
}

h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 0 0 16px;
}

.button {
  display: inline-block;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--field);
  font-weight: 700;
  text-decoration: none;
}

.error {
  color: var(--danger);
}

[hidden] {
  display: none !important;
}

footer {
  margin-top: 48px;
  font-size: 13px;
  color: var(--ink-soft);
}

footer a {
  color: var(--ink-soft);
}
