:root{
    --webbair-primary: #007bff; 
    --webbair-secondary: #0056b3; 
    --webbair-accent: #28a745; 
    --webbair-bg-light: #f8f9fa; 
    --webbair-bg-dark: #343a40;
    --webbair-text-dark: #212529;
    --webbair-text-light: #6c757d;
    --webbair-border: #dee2e6;
}
    @keyframes moving-split-color {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
body { 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, var(--webbair-primary) 0%, var(--webbair-accent) 100%);
    background-size: 200% 100%;
    animation: moving-split-color 10s ease-in-out infinite;
    animation-direction: alternate;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--webbair-bg-light);
    color: var(--webbair-text-dark);
    flex-direction: column;
}
.inlogsectie {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    margin-bottom: 10%;
}
.inlogformulier {
    display: flex;
    flex-direction: column;
}
.inlog-logo {
    width: 100px;
    height: 100px;
}
label {
    text-align: left;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}
input[type="text"],
input[type="password"] {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
input[type="submit"] {
    background: linear-gradient(to right, var(--webbair-primary), var(--webbair-accent));
    color: white;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    border: none;
}
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15), 0 6px 8px -3px rgba(0, 0, 0, 0.1);
}
