/** CSS page Visiteur
 *  @author Sébastien Huguet <s.huguet@lyon.ort.asso.fr>
 *  Création :  15/04/2020
 */
body
{
    background: url(../img/haltere.jpg)         /* Permet de mettre une photo en fond d'écran */
        no-repeat center;                       /* Centre l'image */
    background-size: cover;                     /* Agrandi au maximum l'image en gardant ses dimensions */
}
#cadre_form
{
    width: 50%;
    margin: 9% auto;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
}
form 
{
    padding: 30px;
    border: 1px solid #f1f1f1;
    box-shadow: 1px 1px 12px #555;
    
    background: #fff;
}
img
{
    display: block;
    margin: 0 auto;
    height: 70%;
    width: 70%;
}

