/* Algemeen */
body {
    background: linear-gradient(to right, #2F2FAE, #FF1E1E);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Login container */
.login-container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Header */
.login-header {
    font-size: 28px;
    font-weight: bold;
    color: #2a5298;
}

.login-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Form */
.login-form input {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Button */
.login-form button {
    background: #2a5298;
    border: none;
    padding: 12px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.login-form button:hover {
    background: #1e3c72;
}

/* Fade-in animatie */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
