/* Grundlegende Formatierungen für den Body */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fdfbee; /* Helle Hintergrundfarbe passend zu einem Imker-Thema */
    color: #333;
}

/* Container für das Login-Formular */
.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Maximale Breite für das Formular */
    box-sizing: border-box;
}

/* Überschrift des Formulars */
h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #4b3e2a; /* Dunkler Farbton passend zum Honig-Design */
}

/* Label für Formulareingabefelder */
label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

/* Eingabefelder für E-Mail und Passwort */
input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #6b5b46; /* Passend zum Honigfarbenen Farbton bei Fokus */
    outline: none;
}

/* Button für den Login */
button {
    width: 100%;
    padding: 12px 0;
    background-color: #4b3e2a; /* Dunkles Grün für den Button */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover-Effekt für den Button */
button:hover {
    background-color: #6b5b46; /* Helleres Grün bei Hover */
}

/* Kleinere Anpassungen für größere Displays */
@media (max-width: 768px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }

    button {
        padding: 10px 0;
        font-size: 14px;
    }
}
