/* Verberg scrollbars voor een strakkere look op mobiel */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* =====================
   LOGIN PAGE
   ===================== */
.login-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c114c 0%, #1a237e 50%, #0d47a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

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

.login-logo {
    margin-bottom: 2rem;
}

.login-logo-img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: #3c4043;
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-google-login:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-google-icon {
    width: 20px;
    height: 20px;
}


