body {
    margin: 0;
    padding: 0;
    background:#221808;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: var(--default-font);
    justify-content: center;
    width: 100%;
}

.highlight {
    background-color: #c2c3c4;
    /* couleur de surbrillance */
    padding: 5px;
    border-radius: 5px;
}

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

h1,
p {
    color: #fff;
    text-align: center;
    font-weight: bold;
}

a {
    text-align: center;
}

.connect {
    display: flex;
    width: 40%;
    margin-left: 30%;
    background-color: rgb(250, 250, 250);
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    padding: 3px;

}

.valid {
    width: 50%;
    text-transform: capitalize;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    padding: 3%;

}



.formulaire {
    width: 40%;
    margin-top: 5%;
    margin-left: 30%;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 5%;
}



.form1 {
    display: flex;
    flex-direction: column;
    padding: 5%;
    font-family: var(--default-font);

}

.form1 input {
    height: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid rgb(220, 220, 220);
    padding-left: 10px;
}

.form1 select {
    height: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid rgb(220, 220, 220);
    padding-left: 10px;
}

.form1 input[type="submit"] {
    margin-top: 2%;
    width: 90%;
    margin-left: 5%;
    font-size: 20px;
    background: #ff9602;
    font-family: var(--default-font);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.form1 input[type="submit"]:hover {
    background: #0dff00;
    color: #181004;
    border: 1px solid #ff9602
}

.form1 input:focus {
    border: 2px solid #ff9602;
    outline: none
}

.names {
    display: flex;
    gap: 1%;
    justify-content: center;
}

.names div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#check {
    height: auto;
}

.info {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .names input {
        width: 9%;
    }
    .formulaire{
        width: 80%;
        margin-left: 10%;
    }
}


@media (max-width: 576px) {

    .connect,
    .formulaire {
        width: 90%;
        margin-left: 5%;
    }

    input {
        width: 99%;
    }

    .names input {
        width: 90%;
    }

    #check {
        height: auto;
    }
}