/* Allgemeines Styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f4e6; /* Sanftes Beige */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login-Container */
.container {
    width: 300px;
    padding: 20px;
    background: #f8f4e6; /* Hintergrund vollständig Beige */
    box-shadow: none; /* Entfernt den Schatten für ein sauberes Design */
    border-radius: 10px; /* Abgerundete Ecken */
    text-align: center;
    border: 2px solid #6c1d1d; /* Weinroter Rahmen */
}

/* Login-Schriftzug */
h2 {
    color: #6c1d1d;
    margin-bottom: 10px;
}

/* Fehlermeldung oberhalb der Eingabefelder */
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Formular Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kleinere Eingabefelder */
input {
    width: 80%;
    padding: 6px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #f5e3e3;
    font-size: 14px;
}

/* Kleinerer Button */
button {
    margin-top: 15px;
    padding: 8px;
    width: 85%;
    font-size: 14px;
    background-color: #6c1d1d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #4c0f0f;
}

