body, form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-size: 60px;
    letter-spacing: 2px;
    padding-top: 5px;
}

h3{
    font-size: 40px;
}

form>div{
    background: var(--lavender);
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
}

#nom, #prenom, #datenaiss, #code{
    border: none;
    width: 150px;
    height: 30px;
    padding-left: 10px;
}

.show-password{
    cursor: pointer;
}

.show-password:hover{
    color: #555555;
}

.submit{
    border: none;
    color: var(--magnolia);
    background: var(--polynesian-blue);
    height: 30px;
    width: 150px;
    cursor: pointer;
}

.submit:hover{
    filter:brightness(0.8) ;
}

footer div{
    display: flex;
    align-items: center;
}

footer img{
    height: 50px;
}

@media only screen and (max-width: 800px) {
    h1{
        font-size: 4vh;
    }
}