body {
        font-family: "Segoe UI", sans-serif;
        background: url("images/login_page.jpg") no-repeat center center fixed;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }
        .login-box {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 0 12px rgba(0,0,0,0.08);
            width: 100%;
            max-width: 400px;
            box-sizing: border-box;
            text-align: center;
        }
        .login-box img {
    width: 100%;
    max-width: 200px; /* doppelt so groß wie vorher */
    height: auto;
    margin-bottom: 1rem;
}
        h2 {
            margin-bottom: 1rem;
            color: #444;
        }
        input[type="email"], input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border-radius: 6px;
            border: 1px solid #ccc;
            background-color: #fafafa;
            box-sizing: border-box;
        }
        button {
            width: 48%;
            padding: 12px;
            border: none;
            border-radius: 6px;
            background-color: #666;
            color: white;
            font-weight: bold;
            cursor: pointer;
        }
        button:hover {
            background-color: #444;
        }
        .error {
            color: #c0392b;
            margin-bottom: 1rem;
        }
        .btn-group {
            display: flex;
            justify-content: space-between;
            gap: 4%;
        }
        @media (max-width: 480px) {
            .btn-group {
                flex-direction: column;
            }
            button {
                width: 100%;
                margin-bottom: 10px;
            }
        }
		.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85em;
    color: #666;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.site-footer img {
    height: 30px;
    margin-bottom: 5px;
}