/* ── Passwort-Box ─────────────────────────────────────────────────────────── */
.anm-center {
  display: flex;
  justify-content: center;
}

.anm-pw-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
}

.anm-pw-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.anm-pw-box h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.anm-pw-box > p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.anm-pw-form {
  text-align: left;
  margin-bottom: 0.5rem;
}

.anm-error {
  background: rgba(220, 60, 60, 0.11);
  border: 1px solid rgba(220, 60, 60, 0.38);
  border-radius: 7px;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  color: #e05555;
  margin-bottom: 1rem;
  text-align: left;
}

.anm-divider {
  font-size: 0.68rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.25rem 0 0.85rem;
  position: relative;
}
.anm-divider::before,
.anm-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.anm-divider::before { left: 0; }
.anm-divider::after  { right: 0; }

.anm-hint {
  font-size: 0.81rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.anm-contact-btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.anm-contact-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

/* ── Formular ─────────────────────────────────────────────────────────────── */
.anm-section-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 1.15rem 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.anm-req {
  color: var(--orange);
}

.anm-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}

.anm-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.75rem;
}

/* Formular-Feedback */
.form-feedback {
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: 7px;
  font-size: 0.83rem;
  line-height: 1.5;
  display: none;
}
.form-feedback.success {
  background: rgba(84, 159, 51, 0.11);
  border: 1px solid rgba(84, 159, 51, 0.38);
  color: #6fc44a;
}
.form-feedback.error {
  background: rgba(220, 60, 60, 0.11);
  border: 1px solid rgba(220, 60, 60, 0.38);
  color: #e05555;
}

@media (max-width: 540px) {
  .anm-grid2 { grid-template-columns: 1fr; }
  .anm-grid3 { grid-template-columns: 1fr; }
  .anm-pw-box { padding: 2rem 1.25rem; }
}
