/* --- Login Styles --- */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff8e1, #ffe066);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    width: 350px;
    max-width: 90%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.login-box img {
    max-width: 180px;
    margin-bottom: 20px;
}

.login-box h2 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #222;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.login-box input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 8px rgba(255,204,0,0.5);
    outline: none;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #ffcc00;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background: #e6b800;
}

.error {
    color: #ff3333;
    margin-bottom: 15px;
    font-weight: 500;
}

/* --- Mobile Anpassungen --- */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
        width: 95%;
    }

    .login-box img {
        max-width: 140px;
        margin-bottom: 15px;
    }

    .login-box h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .login-box input, .login-box button {
        font-size: 14px;
        padding: 10px;
    }
}
