/******************** 19:01:02 *****************/
/******************** login.css *****************/
/************************************************/
/*     ROOT VARIABLES                           */
/************************************************/

:root
{
    --primary-color: #00003C;
    --line-color: #b3b3b3;
    --gradient-active: linear-gradient(to left, #6FA2D7, #BDDAFE);

    --step-padding: 1vw;
    --step-height: 2vw; /* ? Hoogte van de rechthoek */
    --step-width: 12vw; /* ? Zorgt ervoor dat alle rechthoeken even groot zijn */
    --step-font-size: 0.9vw; /* ? Tekstgrootte en cijfergrootte even groot */
    --circle-size: 1.5vw; /* ? Kleinere cirkel binnen de padding */
    --line-width: 2vw; /* ? De verbindingslijnen zijn nu exact 15% van de breedte van een rechthoek */

    --extralichtblauw: #BCCAE9; /* 188, 202, 233 */
    --lichtblauw: #769CD2; /* 118, 156, 210 */
    --donkerblauw: #0062AE; /* 0, 98, 174 */
    --donkerrood: #A90A2E; /* 169 10 46 */

    --header-height: 14vh;
}


/************************************************/
/*     ALGEMEEN                                 */
/************************************************/

*
{
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
}

html,
body
{
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body
{
    font-size: 0.8rem;
    line-height: 1.4;
}

input[type='number']
{
    text-align: right;
}
/************************************************/
/*     TYPOGRAPHY                               */
/************************************************/

h1
{
    font-size: clamp(1rem, 4vw, 2rem);
    line-height: 1.1;
}

h2
{
    font-size: clamp(0.75rem, 3vw, 1.5rem);
}

h3
{
    font-size: clamp(0.75rem, 2vw, 1.25rem);
    margin-top: 0;
    margin: 0.5vh;
    padding: 0;
}

p,
td,
th
{
    font-size: clamp(0.75rem, 1.6vw, 1rem);
}




/* Responsieve aanpassing voor kleinere schermen */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem; /* Iets kleiner op mobiele schermen */
        line-height: 1.7; /* Iets ruimere regelafstand voor kleine schermen */
    }

    h1 {
        font-size: clamp(1.75rem, 6vw, 3rem);
        line-height: 1.4;
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
    }

    h3 {
        font-size: clamp(1.25rem, 4vw, 2rem);
        line-height: 1;
    }

    p, td, th {
        font-size: clamp(0.9rem, 2.5vw, 1.3rem);
        line-height: 1.9; /* Nog wat meer lucht bij tekst op kleinere schermen */
    }
}

:root
{
    --extralichtblauw: #BCCAE9; /* 188, 202, 233 */
    --lichtblauw: #769CD2; /* 118, 156, 210 */
    --donkerblauw: #0062AE; /* 0, 98, 174 */
    --donkerrood: #A90A2E; /* 169 10 46 */
}

*,
*::before,
*::after
{
    box-sizing: border-box;
}

html, body
{
    height: 100%;
    margin: 0;
    padding: 0;
}

body, p, td
{
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body
{
    display: flex;
    justify-content: center; /* Horizontaal centreren */
    align-items: center; /* Verticaal centreren */
    height: 100vh; /* Zorgt ervoor dat de container over de hele viewport wordt verdeeld */
    margin: 0; /* Verwijder standaardmarges */
}

.login-container
{
    width: 50%;
    min-width: 800px;
    max-width: 900px; /* Optioneel om maximale breedte te beperken */
    height: auto;
    padding: 60px; /* Voorkomt dat inhoud tegen de randen zit */
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optioneel: geeft een schaduw voor een moderne look */
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1000px) {
    .login-container {
        width: 80%;
        min-width: unset;
        max-width: 80%;
    }
}

.logo-container
{
    top: 0%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Horizontaal centreren */
    align-items: center; /* Verticaal centreren */
}

#logo
{
    width: 100%;
    max-height: 70%;
    aspect-ratio: 325 / 225; /* Verhouding breedte : hoogte */
    object-fit: contain; /* Zorg dat de afbeelding mooi gevuld wordt */
    display: block; /* Verwijdert ongewenste witruimte rond de afbeelding */
}

.form-container
{
    top: 46%;
    width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Horizontaal centreren */
    align-items: center;
    overflow-y: auto;
    margin: 0 auto;
}

.form-container input,
.form-container button
{
    margin-bottom: 2vh;
    line-height: 1.4;

    font-family: inherit;
    font-size: inherit;
    padding: 0.4rem 0.5rem;
    box-sizing: border-box;
}

.form-container input
{
}

input[type="text"],
input[type="password"]
{
    width: 100%;
    padding: 2%;
    border: 2px solid var(--extralichtblauw);
    border-radius: 3% / 30%; /* Afgeronde hoeken */
    background-color: var(--extralichtblauw);
    color: black; /* Witte tekstkleur */
    font-size: 16px;
    outline: none; /* Geen standaard focusrand */
    transition: border 0.3s ease; /* Animatie voor focus */
    box-sizing: border-box;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder
{
    color: rgba(255, 255, 255, 0.7); /* Semi-transparante placeholder tekst */
    font-style: italic; /* Placeholder tekst cursief */
}

input[type="text"]:focus,
input[type="password"]:focus
{
    border: 2px solid white; /* Helderwitte rand bij focus */
    color: black;
}

input[type="text"]:focus::placeholder,
input[type="password"]:focus::placeholder
{
    color: transparent; /* Placeholder verdwijnt bij focus */
}

button
{
    cursor: pointer;
}

.submit-btn
{
    width: 100%;
    padding: 2%;
    border: 2px solid var(--donkerblauw);
    border-radius: 3% / 30%; /* Afgeronde hoeken */
    background-color: var(--donkerblauw);
    color: white; /* Witte tekstkleur */
    font-size: 16px;
    outline: none; /* Geen standaard focusrand */
    transition: border 0.3s ease; /* Animatie voor focus */
}

.submit-btn:hover
{
    border: 2px solid rgba(93, 93, 93, 0.5); /* Helderwitte rand bij focus */
}

.cancel-btn
{
    width: 100%;
    padding: 2%;
    border: 2px solid #bbb; /* Helderwitte rand bij focus */
    border-radius: 3% / 30%; /* Afgeronde hoeken */
    background-color: #bbb; /* Transparante achtergrond */
    color:
    ; /* Witte tekstkleur */
    font-size: 16px;
    outline: none; /* Geen standaard focusrand */
    transition: border 0.3s ease; /* Animatie voor focus */
}

.cancel-btn:hover
{
    border: 2px solid rgba(255, 255, 255, 0.5); /* Helderwitte rand bij focus */
}

.hpfp
{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.hpfp a
{
    text-decoration: none;
    color: #004dae;
}

.hpfp a:hover
{
    text-decoration: underline;
    color: #106dce;
}

#btnHomepage
{
}

#btnHelp
{
}

#btnPasswordReset
{
    position: absolute;
    right: 0;
}

.divError
{
    color: #c00;
}

.divMessage
{
    color: #039;
}

@keyframes shake
{
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-4px); }
    50%  { transform: translateX(4px); }
    75%  { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.shake
{
    animation: shake 0.3s;
}

html
{
    background: url("/images/bg-login.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}