html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Scrollbar entfernen */
    font-family: 'Arial', sans-serif;
}

header:before {
    background-color: #37393e;
}

header #logo img {
    height: 60px;
    background-color: transparent;
    margin-top: 5px;
}

.login header {
    background-color: #37393e;
}

.login header #logo img {
    height: 80px;
    background-color: transparent;
    margin-top: 5px;
}

.login {
    /* Allgemeines Reset für die Login-Seite */
    height: 100vh;
    font-family: 'Arial', sans-serif;
    color: #444;

    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.login .logo-bar {
    background-color: #37393e;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.login .logo-bar #logo img {
    height: 80px;
}

.button-container .separator {
    text-align: center;
    color: #2596be;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 16px;
}


.login .login-container {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 0;
    padding-top: 70px; /* Platz, damit das Logo nicht überschrieben wird */
}

.login .login-box {
    border-top: 5px solid #2596be;
    border-bottom: 5px solid #2596be;
    text-align: center;
    background: white;
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
    max-width: 400px;
    width: 100%;
}

.login .login-button:hover,
.login .login-button:focus {
    filter: brightness(0.95);
    transform: translateY(-2px) scale(1.02);
}


.login .login-box p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #444;
}

/* Login-Button */
.login .login-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff; /* Textfarbe bleibt weiß */
    background-color: #2596be !important;
    border: 1px solid #2596be !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Animation der Login-Box */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Für kleinere Bildschirme */
@media screen and (max-width: 768px) {
    .login .logo-bar #logo img {
        height: 50px;
    }

    .login .login-box p {
        font-size: 18px;
    }

    .login .login-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}