body {
    font-family: 'Raleway', sans-serif;
    background-color: #eef1f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-position: center;
}


.login-container {
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    width: 350px; /* Aangepast voor een slankere uitstraling */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.login-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.login-form h1 {
    color: #0056b3;
    font-size: 2.5em; /* Vergroot voor impact */
    margin-bottom: 0.2em;
}

.login-form h2 {
    color: #000;
    font-size: 1.2em; /* Iets kleiner voor subtiliteit */
    margin-bottom: 1.5em;
}

.input-group {
    margin-bottom: 1.5em;
}

.input-group input {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 20px; /* Ronde hoeken voor moderniteit */
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #0056b3;
}

.input-group.checkbox {
    justify-content: center;
}

.input-group.checkbox label {
    margin: 0;
    margin-left: 10px;
}

.login-failed {
    color: #ff0000;
    font-size: 0.9em;
}

button {
    width: calc(100% - 20px);
    padding: 0.75em;
    border: none;
    background-color: #0056b3;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #003d82;
}

a {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 400px) {
    .login-container {
        width: 90%;
        padding: 1em;
    }

    .login-form h1 {
        font-size: 2em;
    }

    .login-form h2 {
        font-size: 1em;
    }
}
