body {
    margin: auto;
    height: 200vh;
    background-image: url(../images/bg-purple.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#formulaire{height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
position: fixed;}


form{

    border: 0.5px solid rgba(255, 255, 255, 0.164);
    border-radius: 10px;

    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.112);
    backdrop-filter: blur(3px);
    box-shadow: 0px 10px 5px #2423244f;
    width: 300px;
    height: max-content;
}


h1{color: white;
text-align: center;
font-size: 28px;
margin-bottom: 30px;
margin-top: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
letter-spacing: 1.2px;}

.input-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

input{height: 30px;
text-align: center;
font-weight: bold;
color: black;
outline: 0;
border: 0;}

button{background-color: rgb(70, 206, 88);
outline: none;
border: 0;
height: 35px;
cursor: pointer;
border-radius: 5px;
transition: all 0.3s ease-in-out;

}

button:hover{background-color: rgb(131, 40, 216);
color: aliceblue;}