:root {
  --bg: #f4f6fb;
  --card: #ffffff;
  --ink: #1a2233;
  --muted: #667085;
  --accent: #2563eb;
  --accent-ink: #ffffff;
  --border: #e3e8f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(20, 30, 60, 0.08);
}

.center { text-align: center; }

.robot {
  width: 180px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}
.robot.small { width: 110px; }

h1 {
  font-size: 22px;
  line-height: 1.25;
  margin: 8px 0 6px;
}

.muted { color: var(--muted); margin-top: 0; }

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin: 28px 0 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

input, select {
  font-size: 16px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

button {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border: none;
  border-radius: 9px;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
}
button:hover { filter: brightness(1.05); }

.fineprint { font-size: 12px; color: var(--muted); margin-bottom: 0; }

p a { color: var(--accent); }
