/* ============================
   LOGIN PAGINA
============================ */

.login-body {
    background: #F5F5F5;
    font-family: system-ui, sans-serif;
    color: #002B45;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.login-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    border-top: 4px solid #FF6A00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.login-logo {
    width: 99%;
    max-width: 380px;
    padding: 0 5px;
    margin-bottom: 5px;
    opacity: 0.95;
    user-select: none;
}

.login-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.login-subtitle {
    color: #607080;
    margin-bottom: 24px;
}

.login-label {
    text-align: left;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.login-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    margin-bottom: 16px;
    font-size: 1rem;
}

.login-input:focus {
    border-color: #FF6A00;
    box-shadow: 0 0 0 2px rgba(255,106,0,0.15);
    outline: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    background: #002B45;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.login-button:hover {
    background: #FF6A00;
}

.login-footer {
    text-align: center;
    padding: 16px;
    font-size: 0.8rem;
    color: #8A96A3;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo img {
    width: calc(100% - 2px); /* volle breedte minus 5px padding links + rechts */
    padding: 0 2px;
    height: auto; /* verhouding behouden */
    display: block;
    margin: 0 auto 20px auto;
}

.login-input {
    caret-color: #F28C00 !important; /* Maars oranje */
    color: #000;                     /* zorg dat tekst zelf donker is */
    background-color: #FFFFFF;       /* witte achtergrond, voor de zekerheid */
}

.login-input:focus {
    outline: 2px solid #F28C00;
    border-color: #F28C00;
}

.login-card,
.login-wrapper,
.login-input,
.login-body {
    cursor: default !important;
}

#viewer-img {
    all: unset !important;
    display: block !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    object-fit: contain !important;
}

#viewer-content {
    overflow: visible !important;
}




