:root {
  color-scheme: light dark;
  --bg: #f6f4ef;
  --panel: #ffffff;
  --text: #18212f;
  --muted: #667085;
  --accent: #0f8b8d;
  --accent-strong: #0a6567;
  --line: #d8dee8;
  --error: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(100%, 420px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(24, 33, 47, 0.12);
}

.eyebrow,
.copy,
.status {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.copy {
  margin: 10px 0 24px;
  line-height: 1.5;
}

button,
input {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-strong);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 650;
}

input {
  border: 1px solid var(--line);
  padding: 0 13px;
  background: transparent;
  color: var(--text);
}

.status {
  min-height: 22px;
  margin: 18px 0 0;
  font-weight: 650;
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101820;
    --panel: #172331;
    --text: #f8fafc;
    --muted: #a8b3c2;
    --line: #314256;
  }
}
