/* Login pagina container */
.login-page {
    display: flex;
    justify-content: left;
    align-items: left;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-image: url('../images/silo.jpg'); /* Vervang 'jouw-afbeelding.jpg' door de juiste bestandsnaam */
    background-size: cover; /* Zorgt ervoor dat de afbeelding zich uitstrekt om het hele scherm te bedekken */
    background-position: center center; /* Plaatst de afbeelding in het midden van de pagina */
    background-attachment: fixed; /* Zorgt ervoor dat de afbeelding vast blijft staan bij scrollen */
}

/* Login container */
.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Login header */
.login-header {
    margin-bottom: 20px;
}

.login-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    color: #333;
}

p {
    color: #666;
    font-size: 0.9em;
}

/* Formulier stijlen */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-group {
    position: relative;
}

.password-wrapper {
    display: flex;
    align-items: center;
}

.password-toggle {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 64%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2em;
    color: #888;
}

.password-toggle:hover {
    color: #555;
}

/* Login knop */
.btn-login {
    background: #215899;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #174575;
}

/* Responsiviteit */
@media (max-width: 576px) {
    .login-container {
        padding: 20px;
    }
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
