header img {
    width: 100%; /* 100% der Viewport-Breite */
    height: auto; /* Damit das Bild im Seitenverhältnis skaliert wird */
}

#footer {
    text-align: center;
}

#labelbenutzer{
    display: flex;
    justify-content: right;
    /* align-items: right; */
    height: auto;
}

#labelpasswort {
    display: flex;
    justify-content: right;
    /* align-items: right; */
    height: auto;
}

#imageField {
    position: relative;
    top: 50%;
    left: 5%;
}

#loginButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

#connectToSupport {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

#benutzerNameTextbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
}

#passwortBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
}

#eingabeBereich {
    margin: 30px 0px;
    padding: 0;
    height: auto;
    width: auto;
}

#labelBereich {
    margin: 30px 0px;
    padding: 0;
    height: auto;
    width: auto;
}

/* HIER IST DER HEADER BEREICH */

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    border-bottom: 2px solid #ccc;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    z-index: 100;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#header-title {
    font-weight: bold;
    color: #555;
    font-size: 24px;
}

#header-logo {
    width: 60px; /* Logo-Größe anpassen */
    height: auto;
    margin-left: 15px;
}

#header-logo-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    #header-title {
        font-size: 20px;
    }

    #header-logo {
        width: 50px;
    }
}