/*
 * forms.css — Formulare (Kontakt, Mitglied werden)
 * Fotogruppe elektron Lübbenau Child Theme
 */

.fge-form { display: flex; flex-direction: column; gap: 13px; }
.fge-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fge-form-field { display: flex; flex-direction: column; gap: 5px; }
.fge-form-field label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Space Mono', monospace;
}
.fge-form-field input,
.fge-form-field select,
.fge-form-field textarea {
  background: #fff; border: 1.5px solid var(--border-card);
  border-radius: 8px; padding: 11px 15px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none; resize: vertical;
  width: 100%;
}
.fge-form-field input:focus,
.fge-form-field select:focus,
.fge-form-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.fge-form-field input::placeholder,
.fge-form-field textarea::placeholder { color: var(--text-faint); }

/* ---- Feedback Messages ---- */
.fge-form-feedback {
  padding: 12px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; margin-top: 8px;
}
.fge-form-feedback.success { background: #E6F5EE; color: #1a7a48; border: 1px solid #b2dfce; }
.fge-form-feedback.error   { background: #FEE2E2; color: #c0392b; border: 1px solid #fca5a5; }

/* ---- Auf Blue Section: Felder weiß ---- */
.sec-blue .fge-form-field input,
.sec-blue .fge-form-field textarea { background: #fff; }
