:root {
  --bg: #F5F6F8;
  --surface: #FFFFFF;
  --text: #1A2332;
  --text-muted: #5A6678;
  --border: #DCE3EB;
  --primary: #0F172A;
  --accent: #C9302C;
  --accent-hover: #A82824;
  --success: #0E8A4A;
  --error: #C0392B;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}
.wrap {
  max-width: 420px;
  margin: 80px auto;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.wrap-wide { max-width: 1100px; }
h1 { margin: 0 0 6px 0; font-size: 22px; }
h1 .brand { color: var(--accent); }
.subtitle { color: var(--text-muted); margin: 0 0 24px 0; font-size: 14px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin: 12px 0 4px;
  color: var(--text-muted);
}
input[type=text], input[type=email], input[type=password], input[type=tel], textarea, select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 48, 44, 0.12);
}
button, .btn {
  width: 100%;
  padding: 11px 16px;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
  margin-top: 16px;
}
button:hover, .btn:hover { background: var(--accent-hover); }
button.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
button.secondary:hover { background: var(--bg); }
.fehler { color: var(--error); font-size: 13px; margin-top: 10px; min-height: 16px; }
.ok { color: var(--success); font-size: 13px; margin-top: 10px; min-height: 16px; }
.links { margin-top: 20px; font-size: 13px; text-align: center; }
.links a { color: var(--accent); text-decoration: none; }
.links a:hover { text-decoration: underline; }
.hinweis {
  background: #FFF8E6;
  border: 1px solid #F2C94C;
  color: #8A6B15;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin: 16px 0;
}
table { width: 100%; border-collapse: collapse; margin-top: 16px; }
th, td {
  text-align: left; padding: 10px 12px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
th { background: var(--bg); font-weight: 600; color: var(--text-muted); font-size: 13px; }
