:root {
  --ink: #18181b;
  --muted: #52525b;
  --line: #d4d4d8;
  --bg: #fafafa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.wrap {
  max-width: 40rem;
  margin: 0 auto;
  min-height: 100vh;
  padding: 4rem 1.5rem;
}
.center { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1 {
  margin: 0.75rem 0 0;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lede {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
}
.lede.left { text-align: left; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
  min-width: 14rem;
  padding: 0.85rem 2.25rem;
  border-radius: 0.75rem;
  background: #18181b;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
}
.btn.block { width: 100%; min-width: 0; }
.fine { margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }
a { color: inherit; }
.back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
form { margin-top: 1.5rem; }
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
input {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1rem;
}
.consent {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
}
.legal p { color: var(--muted); line-height: 1.55; }
.form { max-width: 28rem; }
