﻿* {
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 2.5rem;
}

.container {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    align-self: center;
    background-color: rgba(131, 218, 255, 0.651);
    border: 2px solid rgba(114, 157, 194, 0.664);
    border-radius: 12px;
}

    .card:hover {
        border: 2px solid rgb(91, 244, 255);
    }

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 2rem;
}

    .login label {
        font-weight: 700;
        letter-spacing: 2px;
    }

    .login input {
        height: 2rem;
        width: auto;
        min-width: 250px;
        max-width: 400px;
        background-color: rgba(255, 255, 255, 0.377);
        border: 2px solid rgb(91, 244, 255);
        border-radius: 7px;
        padding: 5px;
    }

        .login input:focus {
            outline: none;
            font-weight: 500;
            border: 3px solid rgb(0, 233, 250);
        }

    .login button {
        height: 50px;
        width: 200px;
        background-color: rgba(255, 255, 255, 0.377);
        border: 2px solid rgb(114, 156, 194);
        border-radius: 12px;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 2px;
    }

        .login button:hover {
            background-image: linear-gradient(to right, rgba(10, 116, 134, 0.377), rgba(7, 87, 151, 0.719));
            color: white;
            cursor: pointer;
            border: 3px solid rgb(0, 233, 250);
        }

li p {
    font-size: 1.25rem;
}

#sendenBtn {
    transition: background-color 0.5s ease, color 1s ease;
}


.cb-generalK {
    transform: scale(2);
    min-width: 15px;
}

cb-datenschu {
    transform: scale(1.5);
}

.custom-list {
    display: grid;
    grid-template-columns: 1fr; /* eine Spalte */
    width: 100%; /* Breite = längstes Element */
    margin: 0 auto; /* zentriert die Liste */
}

    .custom-list .list-group-item {
        width: 100%; /* alle Items gleich breit */
    }

feldStatus {
    margin-left: 6px;
    font-weight: bold;
}

.feldStatus.ok {
    color: green;
    content: "✅";
}

.feldStatus.error {
    color: red;
}

.feldStatus.info {
    color: gray;
}

.validation-summary-errors ul,
.validation-summary-errors li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 15px;
}

.qm-input {
    padding: 4px 6px; /* vertical horizontal */
}

.accordion {
    width: 100%;
}

.accordion-body {
    overflow-x: hidden;
}

.accordion-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.hw-blue {
    color: rgb(0,112,186);
}

.text-style-normal {
    font-size: 14px;
    color: black;
}

.text-style-gros {
    font-size: 16px;
    color: black;
}


.accordion-locked {
    opacity: 0.6;
}

    .accordion-locked .accordion-button {
        background-color: #e9ecef;
        cursor: not-allowed;
    }

/* --- Einheitliche und breite Eingabefelder --- */
/*.fixed-input {
    width: 110px !important;*/ /* garantiert Platz für 5-stellige Zahlen */
    /*min-width: 110px !important;
    text-align: right;*/ /* Zahlen optisch sauber ausgerichtet */
/*}*/

/* ListGroup-Element sauber ausrichten */
/*.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/

    /* Labels dürfen 2 Zeilen brechen */
    /*.list-group-item label {
        white-space: normal;*/ /* wichtig für Zeilenumbruch */
        /*width: 60%;*/ /* sorgt für sauberen Abstand */
    /*}*/

/*.flex-input {
    display: flex;
    gap: 4px;
}

    .flex-input > input {
        flex: 1 1 auto;
        min-width: 70px;*/ /* nötig für 4–5 stellige Eingaben */
    /*}*/


/*@media screen and (max-width: 600px) {
    .login button {
        background-color: red;
    }
}*/
