.input-group-text {
    color: rgba(255, 255, 255, 1)!important;
    background-color: #003398!important;
}

/* Größe der Radio-Buttons erhöhen */
.controls .form-check-input {
    width: 2rem;   /* Standard: 1rem */
    height: 2rem;
    margin-top: 0.4rem; /* optional: vertikal zentrieren */
}

/* Labels optisch anpassen */
.controls .form-check-label {
    margin-left: 0.5rem;    /* Abstand zum Radio */
    font-weight: 500;
    margin-top: 8px;
}

.form-check .form-check-input {
    float: none!important;
}

.controls .form-check-input:checked {
    background-color: #003398!important;
    border-color: #003398!important;
    color: #003398!important;
}

/* optional Hover-Effekt */
.controls .form-check-input:hover {
    border-color: #003398!important;
}

/* ===== Einheitliches Styling für alle Input-Felder ===== */
.form-control {
    background-color: #fff !important;      /* Hintergrund weiß */
    color: #000 !important;                 /* Text schwarz */
    border: 1px solid #003398 !important;   /* Vereinsblauer Rand */
    font-size: 1rem !important;             /* angenehme Lesbarkeit */
    transition: all 0.2s ease-in-out !important; /* sanfter Übergang */
}

/* Hover-Effekt */
.form-control:hover {
    border-color: #002080 !important; /* dunkleres Blau beim Hover */
}

/* Fokus-Effekt (wenn Feld aktiv ist) */
.form-control:focus {
    background-color: #fff !important;
    border-color: #003398 !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 152, 0.25) !important;
    outline: none !important;
}

/* ===== Für Select-Felder (Dropdowns) ===== */
.form-select {
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #003398 !important;
    appearance: none !important; /* Standard-Style des Browsers entfernen */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23003398' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592c.86 0 1.319 1.013.753 1.658l-4.796 5.482a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem 1rem !important;
}

/* Hover für Select */
.form-select:hover {
    border-color: #002080 !important;
}

/* Fokus-Effekt für Select */
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 152, 0.25) !important;
    border-color: #003398 !important;
}

/* ===== Für Checkboxen ===== */
.form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
    cursor: pointer !important;
    border: 2px solid #003398 !important;
}

/* Checkbox aktiv */
.form-check-input:checked {
    background-color: #003398 !important;
    border-color: #003398 !important;
}

/* Hover und Fokus bei Checkbox */
.form-check-input:hover {
    border-color: #002080 !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 152, 0.25) !important;
}

.form-select option:hover {
    background-color: #003398 !important; /* Vereinsblau */
    color: #fff !important;               /* Text weiß */
}

/* Hintergrundfarbe für die ausgewählte Option */
.form-select option:checked {
    background-color: #003398 !important;
    color: #fff !important;
}

.form-control-feedback {
    display: none !important;
}

form {
    color: #003398 !important;
}

footer #unsign-form a, footer #signup-form a {
    color: #003398 !important;
}