/* Gesamtes Dokument */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Heller Grauton als Hintergrund */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

/* Container für das Formular */
.form-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #ffffff; /* Weißer Hintergrund für das Formular */
    border: 2px solid #007bff; /* Blaue Umrandung */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Überschrift des Formulars */
.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333333;
}

/* Eingabefelder */
.form-container input[type="text"],
.form-container input[type="password"] {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #007bff; /* Blaue Umrandung */
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Anmeldebutton */
.form-container button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #007bff; /* Blaue Hintergrundfarbe */
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container button[type="submit"]:hover {
    background-color: #0056b3; /* Dunkleres Blau beim Hover */
}
