/* Algemeen ontwerp voor alle pagina's */
 body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
         background: linear-gradient(
    90deg,
    #e86f00,
    #ff7900,
    #ff9f1c
);

            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card {
            background: #fff;
            width: 420px;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        h1 {
            margin-top: 0;
            font-size: 28px;
            font-weight: bold;
        }

        label {
            display: block;
            font-weight: bold;
            margin: 15px 0 8px;
        }

        input {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            border-radius: 8px;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }

        .button {
            width: 100%;
            margin-top: 25px;
            padding: 14px;
            background: #f16e00;
            color:black;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            cursor: pointer;
            font-weight: bold;
        }

        .links {
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
        }

        .links a {
            color: #0056ff;
            text-decoration: none;
            font-size: 14px;
        }

        .links a:hover {
            text-decoration: underline;
        }

/* Loader overlay */
#loader_box {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    color: #333;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top: 6px solid #2d6cdf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px; /* ruimte zoals in voorbeeld */
}

.company-logo {
    width: 260px;   /* grootte zoals screenshot */
    max-width: 100%;
    height: auto;   /* HD blijft scherp */
}
