/* LOGIN PAGINA – 01/02/2026 */

html, body{
    height: 100%;
    overflow-x: hidden; /* geen horizontale scroll EN verticale scroll */
    overflow-y: hidden; 
}

body{
    margin: 0;
    padding: 0;
    background-color: black;
}


.login-page{
    width: 100%;
    min-height: 100vh;
    background-color: black;

    /* Ik gebruik weer dezelfde background-images om het weer zo donker te maken*/
    background-image:
        url("img/grada.png"),
        url("img/undergradient.png"),
        url("img/final-background.jpeg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
}

.login-card{
    width: 28em;
    max-width: 92vw;
    
    /* donker paneel zoals de website gewoon 01/02/2026 */
    background-color: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 11px;

    padding: 2em;
}

.login-logo{
    
    width: 4.5em;
    height: 4.5em;
    margin: 0 auto 1em auto;
}

/* IK MOET HEEL DE WEBSITE NOG VERANDEREN TOT PHP OM ALLES ZO GOED TE KUNNEN MAKEN 01/02/2026/ */ 

.login-title{
    
    text-align: center;
    font-family: "Imperial Script", cursive;
    font-weight: 500;
    font-size: 3.2em;
    color: white;
}

.login-subtitle{
    
    text-align: center;
    font-family: "Roboto Serif", serif;
    font-weight: 300;
    color: rgba(255,255,255,0.70);
}

.login-form{
    
    width: 100%;
}

.login-label{
    display: block;
    margin: 0 0 0.4em 0;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
}

.login-input{
    width: 94%;
    height: 3.2em;
    padding: 0 1em;
    margin-bottom: 1.1em;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.18);
    
    border-radius: 6px;

    color: rgba(255,255,255,0.85);
    outline: none;

    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.login-input:focus{
    border-color: rgba(0,117,163,0.9);
}

.login-row{
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    margin: 0.2em 0 1.4em 0;
}

.login-check{
    
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: rgba(255,255,255,0.70);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    user-select: none;
}

.login-link{
    
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: color 0.25s ease;
}

.login-link:hover{
    
    color: rgba(255,255,255,0.95);
}

/* buttons: exact jouw stijl (outline + blauw) */
.login-buttons ul{
    
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1em;
    align-items: center;
}

.login-buttons ul li{
    
    list-style: none;
}

.login-btn-outline{
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2em;
    width: 10em;
    
    border: 1px solid gray;
    border-radius: 1px;
    background: transparent;

    color: rgba(255,255,255,0.70);
    text-decoration: none;

    font-family: "Roboto", serif;
    font-weight: 700;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.login-btn-outline:hover{
    background-color: rgba(255,255,255,0.06);
}

.login-btn-primary{
    height: 3.2em;
    width: 10em;
    border: 0;
    border-radius: 1px;

    background-color: rgb(0, 117, 163);
    color: rgba(255,255,255,0.863);

    font-family: "Roboto", serif;
    font-weight: 700;

    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.login-btn-primary:hover{
    background-color: rgb(0, 97, 136);
    color: rgba(255,255,255,0.637);
}

.login-footer{
    margin-top: 1.4em;
    color: rgba(255,255,255,0.60);
    font-family: "Roboto Serif", serif;
    font-weight: 300;
}
