/* Google Fonts toevoegen voor die extra strakke look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    /* Bewegende gradient achtergrond */
    background: linear-gradient(-45deg, #667eea, #764ba2, #6B8DD6, #8E37D7);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

h2 {
    color: #1e293b; /* Donkerder voor beter contrast op wit */
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

h2::before {
    content: "🔑";
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Subtiele tekst onder de titel */
.login-container p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

label {
    display: block;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Cruciaal voor breedte */
}

input:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

button {
    width: 100%;
    background: #6366f1;
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

button:active {
    transform: translateY(0);
}

/* Styling voor links onderaan */
.footer-links {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.footer-links a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiviteit */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 2rem;
        border-radius: 20px;
    }
}