@font-face {
    font-family: comfortaa;
    src: url(../fonts/Comfortaa-Regular.ttf);
}

@font-face {
    font-family: comfortaaB;
    src: url(../fonts/Comfortaa-Bold.ttf);
}

@font-face {
    font-family: comfortaaL;
    src: url(../fonts/Comfortaa-Light.ttf);
}


.container {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

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

.formulaire {
    width: 100%;
}


.formulaire {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;
}



.form-container {
    max-width: 400px;
    background: #ffffff;
 

}


.form-container {
    width: 800px;                /* largeur contrôlée */
    max-width: 100%;
    min-height: 450px;

    background-image: url("../images/bureauflou.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px;

  
}

form {
    background: white;
    padding: 25px;
    border-radius: 8px;
}
 
label {
    display: block;
    margin-top: 8px;
    font-weight: bold;
}

input,
button {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
}

button {
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #0056b3;
}

#lien {
    margin: 20px auto;
    text-align: center;
    font-size: 8px;
    font-family: comfortaaL;
    color: red;
}


.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
}

.popup-content h2 {
    margin-bottom: 10px;
}