/* Shared styling for the plain fixtures (02–06). Generic element selectors so a bare
   <form> looks like a clean dealer callback card with zero structural changes. Kept minimal
   so it never unhides [hidden] steps or interferes with the fixtures' submit behavior. */
:root {
  --fg: #0f1729;
  --muted: #5b6676;
  --line: #e6e9f1;
  --accent: #2f6bff;
  --paper: #ffffff;
  --bg: #eef2f9;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 20px;
}
h1 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px; text-align: center; }
form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 14px 44px -16px rgba(16, 23, 41, 0.22);
  display: grid;
  gap: 12px;
}
input:not([type="checkbox"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fbfcfe;
}
input:not([type="checkbox"]):focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
button[type="submit"], button[type="button"] {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 13px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
}
button:hover { filter: brightness(1.07); }
button[type="button"] { background: #1f2a3d; }
label { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.cf-turnstile { margin: 2px 0; }
#submitted:not([hidden]) {
  color: #16a34a; font-weight: 700; font-size: 14px; text-align: center; margin-top: 14px;
}
