/* Anmeldeseite: eine einzelne Karte, mittig, sonst nichts. */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.anmelde-karte {
  width: 100%;
  max-width: 380px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.anmelde-kopf {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}
.anmelde-kopf .text { margin-right: auto; }
.anmelde-kopf p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.anmelde-karte form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.anmelde-karte .btn-primary { width: 100%; }

.anmelde-fuss {
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
