@font-face {
        font-family: "poppins";
        src: url(./poppins/Poppins-SemiBold.ttf);
}

* {
        text-decoration: none;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #fff;
        box-sizing: border-box;
}

body {
        background-image: url(./images/background.jpg);
        background-size: cover;
        width: 100vw;
        height: 100vh;
        font-family: "poppins";
}
section {
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
}
h1 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
}

.formulaire {
        position: absolute;
        background: #181c1f84;
        backdrop-filter: blur(3px);
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
        text-align: center;
        line-height: 1;
}

input {
        outline: none;
        border-radius: 5px;
        border: 2px solid rgba(13, 144, 231, 0.476);
        min-width: 200px;
        color: black;
        padding: 5px 20px;
}
label {
        font-size: 1.5rem;
}
.formulaire .options {
        display: flex;
        justify-content: space-evenly;
}
.options input {
        background: none;
        padding: 10px 20px;
        border-radius: 150px;
        border: 3px solid #fff;
        color: #fff;
        transition: 0.5s;
        min-width: 0;
        margin: 10px;
}
.options input:hover {
        background: linear-gradient(to right, rgb(11, 93, 128), rgb(255, 255, 255));
        transform: scale(1.1);
}
::placeholder {
        text-align: center;
}
@media screen and (max-width: 800px) {
        form {
                display: flex;
        }
        section {
                justify-content: center;
        }
        .formulaire {
                position: absolute;
                line-height: 1;
                height: 100%;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 20px;
        }
        .formulaire ul {
                width: 60%;
        }
        .formulaire ul li {
                padding: 10px 0;
        }
}
