/* =========================================================
   IDUWA BRANDING: FORM ELEMENTS (ORANGE FOCUS)
   ========================================================= */

/* 1. Checkbox: Wenn sie ausgewählt ist */
.form-check-input:checked {
  background-color: var(--iduwa-orange) !important;
  border-color: var(--iduwa-orange) !important;
}

/* 2. Alle Inputs & Checkboxen: Der Fokus-Rahmen (Blau zu Orange) */
.form-control:focus,
.form-check-input:focus {
  border-color: var(--iduwa-orange) !important;
  outline: 0;
  /* Ein sanfter orangefarbener Schatten statt des Standard-Blaus */
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25) !important;
}

/* 3. Button-Fokus (Optional, falls noch blau) */
.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.4) !important;
}
/* Verhindert den gelben Hintergrund bei Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #212529 !important; /* Deine Textfarbe */
}
