/* Schlichtes, sachliches Registerlayout – dezent modernisiert. */
:root {
  --navy: #1b3a6b;
  --navy-dark: #152f57;
  --gold: #b59b3b;
  --line: #e2e0d6;
  --bg: #f6f5f0;
  --text: #1d1f24;
  --muted: #6b6f76;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.kopf {
  background: #ffffff;
  border-bottom: 3px solid var(--gold);
  padding: 14px 24px;
}
.kopf table { width: 100%; border: 0; }
.kopf .logo img { height: 46px; width: auto; display: block; }
.kopf .logo a { display: inline-block; }
.kopf .logo span { font-size: 10.5px; display: block; letter-spacing: 2px;
                   color: var(--muted); margin-top: 5px; text-transform: uppercase; }
.kopf .rechts { text-align: right; font-size: 12px; color: var(--muted);
                vertical-align: bottom; }

.nav {
  background: var(--navy);
  padding: 0 24px;
  font-size: 13px;
}
.nav a { display: inline-block; margin-right: 6px; padding: 11px 14px;
         color: #d9e2f3; border-bottom: 2px solid transparent; }
.nav a:hover { color: #fff; background: var(--navy-dark);
               border-bottom-color: var(--gold); text-decoration: none; }

.inhalt { padding: 26px 24px 56px; max-width: 940px; margin: 0 auto; }
h1 { font-size: 23px; font-weight: 600; margin: 0 0 18px;
     padding-bottom: 10px; border-bottom: 1px solid var(--line); }
h2 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; }

.suchkasten {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.suchkasten label { font-size: 13px; color: var(--muted); }
.suchkasten input[type=text] {
  font: inherit; font-size: 15px; margin-top: 8px;
  border: 1px solid #cfcdc2; border-radius: 6px; padding: 8px 10px; width: 340px;
  max-width: 100%;
}
.suchkasten input[type=text]:focus { outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.12); }

input[type=submit], .knopf {
  font: inherit; font-size: 14px; font-weight: 500;
  background: var(--navy); color: #fff;
  border: 1px solid var(--navy); border-radius: 6px;
  padding: 8px 16px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background .12s ease;
}
input[type=submit]:hover, .knopf:hover { background: var(--navy-dark); text-decoration: none; }
a.knopf { background: #fff; color: var(--navy); }
a.knopf:hover { background: #eef1f7; }

table.liste { border-collapse: collapse; width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.05); }
table.liste th, table.liste td {
  border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left;
  vertical-align: top; font-size: 14px;
}
table.liste th { background: var(--navy); color: #fff; font-weight: 600;
                 font-size: 12px; letter-spacing: .4px; text-transform: uppercase; }
table.liste tr:last-child td { border-bottom: 0; }
table.liste tbody tr:hover td, table.liste tr:hover td { background: #f3f5f9; }
table.liste tr.gerade td { background: #fafaf7; }

table.daten { border-collapse: collapse; background: #fff; width: 100%;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.05); }
table.daten th, table.daten td { border-bottom: 1px solid var(--line);
  padding: 10px 14px; text-align: left; vertical-align: top; }
table.daten tr:last-child th, table.daten tr:last-child td { border-bottom: 0; }
table.daten th { background: #f6f5f0; width: 180px; font-weight: 600; color: var(--muted); }

.blaettern { margin: 18px 0; font-size: 13px; color: var(--muted); }
.blaettern a { font-weight: 500; }
.hinweis { font-size: 13px; color: var(--muted); }
.fehler { color: #b3261e; font-weight: 600; }

.formzeile { margin-bottom: 14px; }
.formzeile label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 5px; }
.formzeile input[type=text], .formzeile textarea {
  font: inherit; font-size: 15px;
  border: 1px solid #cfcdc2; border-radius: 6px; padding: 8px 10px;
  width: 440px; max-width: 100%;
}
.formzeile input[type=text]:focus, .formzeile textarea:focus { outline: none;
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.12); }

.cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.cta .knopf { background: var(--navy); color: #fff; }
.cta .knopf:hover { background: var(--navy-dark); }

.fuss {
  margin-top: 48px; border-top: 1px solid var(--line); padding: 18px 24px;
  font-size: 12px; color: var(--muted); background: #fff; text-align: center;
}
.fuss a { color: var(--muted); text-decoration: underline; }
