body{
    background-color: rgb(47, 47, 143);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.titre{
    color: white;
    text-align: center;
    text-decoration: underline;
}
form{
    background-color: blue;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 5px 0px 5px black;
    padding: 10px;
}
.ligne{
    margin:10px;
}
label{
    display: inline-block;
    min-width: 200px;
    color: white;
    font-size: 50px;
}
input{
    font-size: 30px;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgb(47, 47, 143);
    color:rgb(143, 47, 52);

}
.pied{
    display: flex;
    justify-content: center;
}
.pied input{
    background-color: white;
    color: rgb(47, 47, 143);
}
