*{
    box-sizing:border-box;
    color: rgb(31, 19, 156);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body{
    width: 90%;
    margin: 0 auto;
}
.box{
    padding: 20px;
    margin-bottom: 10px;
    background-color: aqua;
    border-radius: 10px;
    box-shadow: 10px 10px 10px grey;
    text-align: center;
    &
    .formateur select{
        width: 80%;
        background-color: blue;
        border-radius: 10px;
        padding: 10px;
        color: aqua;
        text-align: center;
        margin: 2rem;
    }
}

.client{
    border: 1px solid red;
    padding: 10px;
    display: flex;
    flex-direction: column;
    &
    input{
        margin-bottom: 20px;
    }
    &
    input[type=date]{
        width: 70%;
        text-align: center;
    }
}
.infos{
    display: flex;
    flex-direction: column;
}

.signature{
    display: flex;
    flex-direction: column;
}
.boutons{
    display: flex;
    justify-content: space-around;

}
canvas{
    border: 1px solid black;
    background-color: blanchedalmond;
    width: 250px;
    height: 100px;
}
a, button{
    text-decoration: none;
    border: none;
    margin: 10px;
    padding: 5px;
    background-color: rgb(255, 0, 106);
    border-radius: 10px;
    box-shadow: 5px 5px 5px grey;
    color: aliceblue;
}
&
a:hover, button:hover{
    color: black;
}

button{
    width: 90%;
    height: 3rem;
    font-size: 1rem;
}


