﻿/* Algemeen */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
}

body {
    background-image: url('/images/Background.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    box-sizing: border-box;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    width: 420px;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-top: 8px solid #005a9e;
    border-left: 4px solid #ff6600;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    .login-container h2 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #005a9e; 
        text-align: center;
        font-weight: bold;
    }

    .login-container form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px; /* Ruimte tussen de velden */
    }

        .login-container input {
        padding: 12px; /* Iets meer padding voor betere klikbaarheid */
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 100%;
        box-sizing: border-box; /* Inclusief padding in de breedte */
        background-color: #f9f9f9;
        transition: border-color 0.3s, box-shadow 0.3s; /* Animatie bij focus */
    }

        .login-container input:focus {
            outline: none;
            border-color: #ff6600; /* Oranje accent bij focus */
            box-shadow: 0 0 8px rgba(255, 102, 0, 0.5); /* Oranje gloed bij focus */
        }
        
    .login-container button {
        padding: 12px;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        background-color: #005a9e; 
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease; 
        width: 100%; 
    }

        .login-container button:hover {
            background-color: #003d6d; 
        }

    /* Links */
    .login-container .link {
        font-size: 14px;
        color: #005a9e; 
        text-decoration: none; 
        margin-top: 15px;
        text-align: center;
        display: inline-block;
    }

        .login-container .link:hover {
            text-decoration: underline; 
        }

.error-message {
    color: #e81123; 
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}

@media (max-width: 768px) {
    .login-container {
        width: 90%; 
    }

        .login-container h2 {
            font-size: 22px;
        }

        .login-container button {
            padding: 10px;
            font-size: 14px;
        }
}
