/* Grundlegendes Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1117; /* Dunkles Grau-Blau */
    color: #c9d1d9; /* Helles Grau für Text */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Höhe des gesamten Viewports */
}

/* Login-Container */
.login-container {
    background-color: #161b22; /* Dunkler Container-Hintergrund */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 350px;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%; /* Nimmt die volle Breite des Containers */
}

.login-form h1 {
    margin-bottom: 20px;
    color: #58a6ff; /* Akzentfarbe */
    text-align: center; /* Überschrift zentrieren */
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Eingabefelder linksbündig */
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #f0f6fc; /* Helles Weiß */
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #21262d;
    border-radius: 5px;
    background-color: #0d1117;
    color: #c9d1d9;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #58a6ff;
    outline: none;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert alle Inhalte innerhalb des Formulars */
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #58a6ff;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* Passt die Breite automatisch an den Inhalt an */
    text-align: center; /* Text im Button zentrieren */
    margin-top: 10px; /* Abstand nach oben */
}

button:hover {
    background-color: #4696e5;
}

button:active {
    background-color: #347dc1;
}

/* Fehlernachricht */
.error {
    color: #f44336;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}
