/* Form ----------------------------------------------------------- */
form{
    margin: 0 auto;
    padding: 10px;
}
input.champs{
    width: 100%;
    margin: 5px 0 20px 0px;
    padding: 2px ;
    background: none;
    border-bottom: 1px solid #fff;
    transition: all 0.5s ease;
}
input.champs:focus {
    border-bottom: 1px solid #fff;
    transition: all 0.5s ease;
}
p.validation{
    font-size: 0.85em;
    color: red;
    text-align: center;
    margin: 0px;
    font-weight: 900;
}
label.error{
    color: red;
}
input.champs.error {
    border-bottom: 1px solid red;
    transition: all 0.5s ease;
}

input[type='checkbox']{
    display: inline-block;
}
input[type='checkbox']+label{
    font-size: 0.85em;
    font-weight: 100;
}