/* style-login.css */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Typische Apple-Schriftart */
    background: #000; /* Schwarzer Hintergrund für die gesamte Seite */
    color: #fff; /* Weiße Textfarbe */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: #1a1a1a; /* Sehr dunkles Grau als Hintergrund für den Login-Container */
    padding: 40px;
    border-radius: 12px; /* Abgerundete Ecken */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); /* Weicher Schatten für einen schwebenden Effekt */
    text-align: center;
    width: 300px; /* Fixe Breite für den Container */
}

.login-logo img {
    max-width: 60%; /* Reduzierte Logo-Größe für eine ausgewogene Optik */
    height: auto;
    margin-bottom: 40px;
}

.login-form label,
.login-form input,
.login-form input[type="submit"] {
    display: block;
    width: 80%;
    margin-bottom: 20px;
    margin: auto;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    background: #333; /* Dunkler Hintergrund für Eingabefelder */
    border: 1px solid #444; /* Subtile Grenze */
    border-radius: 6px; /* Abgerundete Ecken für Eingabefelder */
    padding: 12px; /* Bequeme Polsterung */
    color: #fff; /* Weiße Textfarbe */
}

.login-form input[type="submit"] {
    background: black; /* Blaue Buttonfarbe ähnlich der von Apple */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s; /* Weicher Übergang für Hover-Effekt */
}

.login-form input[type="submit"]:hover {
    background: #0051a5; /* Dunklere Blaufarbe beim Hover */
}

/* Media query für responsive Design */
@media (max-width: 600px) {
    .login-container {
        width: 80%;
        padding: 20px;
    }

    .login-logo img {
        max-width: 80%;
    }
}
