body{
    overflow: hidden; /* Zorg ervoor dat de SVG's binnen de body blijven */
    margin: 0px;

}

.background-svg {
    position: absolute;
    width: 500px; /* Pas de grootte naar wens aan */
    height: auto;
    z-index: -1; /* Achter de inhoud plaatsen */
}

.left-svg {
    width: 400px; /* Pas de grootte naar wens aan */
    bottom: 5%;
    left: -280px; /* Verplaats naar links buiten het zichtbare gebied */
}

.right-svg {
    width: 400px; /* Pas de grootte naar wens aan */
    top: 10%;
    right: -210px; /* Verplaats naar rechts buiten het zichtbare gebied */
}


.page-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    background-color: #f3f3f3b5;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 132%;
    height: 100%;
    background-image: url('../images/writing.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Pas deze waarde aan voor meer of minder transparantie */
    z-index: -1; /* Zorg ervoor dat de achtergrond achter de inhoud ligt */
}

.login-container-total {
    display: flex;
    width: 80%;
    /* height: 80%; */
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
    border-radius: 20px;
    max-width: 1500px;
}

.right-container {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    flex-direction: column;
    margin-top: 15vh;
}


#register-container{
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.logo-container{
    max-width: 200px;
}

.welcom-container{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;

}

img.login-logo{
    max-width: 150px;
}

.left-container {
    /* background-image: url('../images/writing.jpg'); /* Zorg ervoor dat het pad klopt */
    background: linear-gradient(10deg, #00967c, #00edc6);
     background-size: cover;     /* Zorgt ervoor dat de afbeelding de hele container vult */
     background-position: center; /* Centreert de afbeelding in de container */
     background-repeat: no-repeat; /* Voorkomt dat de afbeelding herhaald wordt */
     width: 100%;   /* Pas de breedte aan naar jouw wens */
     border-top-right-radius: 20px;
     border-bottom-right-radius: 20px;
 }

.login-container, .password-container, .password-reset-container,.new-user-container {
    width: 330px;
    margin: 24px auto;
    padding: 40px 40px 40px 40px;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
    background-color: white;
}

.password-container{
    width: 390px;
}

.password-reset-container{
    width: 50vh;
    max-width: 500px;

}

.password-reset-container H2{
    font-size: 24px !important;
    margin-bottom: 18px !important;
}


.new-user-container {
    width: 400px;
}

.new-user-container H2{
    font-size: 30px !important;
    margin-bottom: 18px !important;
}

.register-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    margin: 0px;
    text-align: start;
    line-height: 24px !important;
}




.login-header-section{
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 40px;
}

.login-header-section h2 , .modal-content h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-top: 0px;
    text-align: start;
    margin-bottom: 8px;
    text-align: center;
}

.login-header-section p, .modal-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    text-align: center;
}

#login-form, #register-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

#register-form{
    margin: 0px;
}


.login-form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}







input[type="email"], input[type="password"], input[type="text"] {
    padding: 12px 8px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
}

input[type="email"]:hover , input[type="password"]:hover, input[type="text"]:hover {
    border-color: #00E6BF;
    outline: none;
}

input[type="email"]:focus , input[type="password"]:focus, input[type="text"]:focus {
    border-color: #00E6BF;
    outline: none;           /* Verwijdert de standaard focus outline */
    box-shadow: 0 0 5px rgba(128, 189, 255, 0.5); /* Voegt een lichte blauwe gloed toe */
}

input[type="email"]:focus-visible , input[type="password"]:focus-visible, input[type="text"]:focus-visible {
    border-color: 2px solid #00E6BF;
    outline: none;           /* Verwijdert de standaard focus outline */
    box-shadow: 0 0 5px rgba(128, 189, 255, 0.5); /* Voegt een lichte blauwe gloed toe */
}


/* Standaard placeholder-kleur */
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder
 {
    color: #a4a4a4; /* Pas deze kleur aan naar wens */
    font-weight: 300;
}




button, #close-email-modal {
    background-color: #00E6BF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.5s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#registerInloggen, #registerInloggenb{
    color: #00E6BF;
    background-color: white;
    border: 1px solid #00E6BF;
}

#registerInloggenb{
    margin-top: 24px;
}

#registerInloggen:hover{
    background-color: #00e6c018;
}

button:hover, #close-email-modal:hover{
    cursor: pointer;
    background-color: #01b798;
}

#forgot-password-link {
    margin-top: 12px;
}

a#forgot-password-link {
    font-size: 14px;
    color: #454545;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;

}



.register-container {
    display: flex;
}

.register-text {
    text-align: start;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;

}

.register-link, .Inloggen {
    font-family: 'Montserrat', sans-serif;
    color: #00E6BF; /* Pas aan naar jouw gewenste kleur */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.register-link:hover, .disclaimer-link:hover, .Inloggen :hover {
    color: #00bfa5; /* Kleurverandering bij hover */
}


.register-disclaimer{
    font-size: 14px !important;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;

}

.disclaimer-link{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px !important;
    color: #00E6BF; /* Pas aan naar jouw gewenste kleur */
}

/* Het modal venster (verborgen standaard) */
.modal {
    display: none;
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Achtergrond donkerder */
}
  
.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-content h2{
    font-size: 24px;
    margin-bottom: 32px;
    text-align: center;
}


.modal-content p{
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 30px;
}


.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input[type="password"],
.password-field input[type="text"] {
    width: 100%;
    padding-right: 30px; /* Zorgt voor ruimte voor het oog-icoon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    color: #d7d7d7;
}


.message, #message {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FF6F61;
    text-align: center;
}


@media (max-width: 768px) {
    .page-content::before{
        width: 100%;
    }
    .new-user-container {
        width: 80%;
        padding: 30px;
        margin: 20px auto; /* Midden op het scherm */
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15); /* Minder opvallende schaduw */
        border-radius: 8px; /* Kleinere border-radius */
    }

    .new-user-container h1 {
        font-size: 1.5em; /* Iets kleiner font voor de titel */
        text-align: center; /* Centraal uitlijnen van de titel */
    }

    .new-user-container input {
        font-size: 1em; /* Betere leesbaarheid */
        padding: 12px; /* Kleinere padding voor inputs */
    }

    .new-user-container .button-primary {
        font-size: 1em; /* Kleur en stijl van de knop aanpassen aan mobiel */
        padding: 14px 20px;
        width: 100%; /* Volledige breedte op mobiel */
        margin-top: 10px;
    }

    .new-user-container .button-secondary {
        font-size: 1em;
        width: 100%;
        margin-top: 5px;
    }

    .new-user-container .terms {
        font-size: 0.85em; /* Kleinere tekst voor de voorwaarden */
        text-align: center; /* Centraal uitlijnen */
    }

    .password-reset-container {
        width: 80%; /* Zorg ervoor dat de container bijna de volledige breedte gebruikt */
        padding: 20px; /* Minder padding voor mobiel */
        margin: 20px auto; /* Centraal uitlijnen */
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15); /* Minder opvallende schaduw */
        border-radius: 8px; /* Kleinere border-radius */
    }

    .password-reset-container h2 {
        font-size: 20px; /* Maak de titel iets kleiner */
        text-align: center; /* Zorg voor centrale uitlijning */
    }

    .password-reset-container p {
        font-size: 14px; /* Pas de tekstgrootte aan voor mobiel */
        line-height: 1.4; /* Betere leesbaarheid */
        text-align: center; /* Centraal uitlijnen voor betere presentatie */
    }

    .password-reset-container button {
        width: 100%; /* Knop over de volledige breedte */
        font-size: 16px; /* Iets kleinere tekst */
        padding: 12px; /* Grotere touchzone */
    }

    .modal-content {
        padding: 20px;
        margin: 25% auto;
        width: 85%;
    }

    

    .modal-content p {
        text-align: center;
    }


}


/* register-b styling */
.register-form-button-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    margin-top: 16px;
    margin-bottom: 16px;
    flex-direction: column;
}




