html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    overflow-x: hidden; /* Entfernt horizontalen Scrollbalken */
    background-image: url('/images/hintergrund_1920x1080_gruen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.container { /* Falls du eine Hauptstruktur hast */
    max-width: 100vw; /* Stellt sicher, dass nichts über die Seite hinausgeht */
}



header {
    background-color: transparent; /* Komplett transparente Farbe */
    color: black;
    text-align: center;
    padding: 10px 0;
}

footer {
    background-color: rgba(255, 255, 255, 0) !important; /* Komplett transparent */
    color: black;
    padding: 10px 20px;
    text-align: left;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer p {
    position: absolute;
    left: 20px; /* Abstand vom linken Rand */
    bottom: 10px; /* Direkt unten fixiert */
    margin: 0;
}



.login-container {
    width: 400px;
    padding: 30px;
    background-color: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Exakte Zentrierung */
}


.login-container h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 12px;
    font-size: 16px;
    color: white;
    background-color: #8C9C31; /* Standard-Grün */
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Sanfter Farbwechsel */
}

button:hover {
    background-color: #94B3A4; /* Farbwechsel beim Draufgehen */
}
.hidden-button {
    opacity: 0; /* Unsichtbar machen */
    position: absolute;
    bottom: 10px;
    right: 20px;
    background-color: #8C9C31;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    pointer-events: auto; /* Button bleibt aktiv */
}



