﻿/* Maak de body en html 100% van de viewportgrootte */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ====================================================================================== Header */
.non-scrollable-content {
    padding-top: 10px;
    overflow-x: hidden; /* Voorkom horizontale scroll */
    margin-bottom: 280px;
}

/* Zorg ervoor dat andere secties voldoende ruimte hebben */
section {
    position: relative;
    min-height: 100px; /* Zorgt ervoor dat secties voldoende ruimte innemen */
}

    section.intro {
        position: fixed; /* Zorgt ervoor dat deze sectie vast staat */
        top: 80px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: rgba(37, 63, 110, 0.9); /* Semi-transparant blauw */
        width: 100%; /* Zorgt ervoor dat de sectie de volledige breedte inneemt */
        box-sizing: border-box; /* Houdt rekening met padding en marges */
        color: white;
        overflow-y: auto;
    }

        section.intro .text-content {
            width: 90%; /* Stelt de breedte in op 50% van de pagina */
            margin: 0 auto; /* Centreert de text-content in het midden van de pagina */
            text-align: left; /* Zorgt ervoor dat de tekst links uitgelijnd blijft */
            padding: 20px; /* Optioneel: voegt wat ruimte toe rond de tekst */
        }



/* Stijlen voor de login-container die de div centreert */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Stijlen voor de login-box */
.login-box {
    width: 50%;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.8); /* Transparante witte achtergrond */
    border-radius: 15px; /* Afgeronde hoeken */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Schaduw voor diepte */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width:250px;
    min-height: 390px;
    z-index: 100;
}


/* Stijlen voor het formulier */
form {
    display: flex;
    flex-direction: column;
    width: 80%;
}

/* Stijlen voor de inputvelden en knoppen */
input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

button {
    padding: 12px;
    background-color: #20B485;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

    button:hover {
        background-color: #24C79B;
    }

.redirecttosignup {
    padding-top: 50px;
    width: 80%;
}

    .redirecttosignup a {
        text-decoration: none;
        color: #2C808F;
        font-weight:600;
    }