/* Allgemeine Stile */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFBF0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login-Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Login-Box */
.login-box {
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.logo img {
    max-width: 300px; /* Vergrößert das Logo */
    height: auto;
    margin-bottom: 20px;
}

/* Formular */
form h2 {
    font-size: 1.8rem;
    color: #A86953;
    margin-bottom: 20px;
}

form label {
    display: block;
    font-size: 1rem;
    color: #5A5A5A;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #E3DCC9;
    font-size: 1rem;
    box-sizing: border-box;
}

form input:focus {
    outline: none;
    border-color: #A86953;
    box-shadow: 0 0 5px rgba(168, 105, 83, 0.5);
}

/* Button */
form button {
    padding: 10px 20px;
    background-color: #C7E0BF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

form button:hover {
    background-color: #A86953;
}

/* Responsive */
@media (max-width: 768px) {
    .login-box {
        padding: 20px;
    }

    form h2 {
        font-size: 1.5rem;
    }
}
/* Fehlermeldungsbox */
.error-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcccc;
    color: #b30000;
    padding: 15px 20px;
    border: 1px solid #b30000;
    border-radius: 8px;
    font-size: 1rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Über andere Elemente */
}