/** CSS FORMULAIRE
 *  @author Sébastien Huguet <s.huguet@lyon.ort.asso.fr>
 *  Création :  18/03/2020
 */

label
{
    font-weight: bold;
    font-style: italic;
    font-size: 30px;
    color: #C0392B;
}

input[type=text], select, input[type=tel], input[type=email], input[type=time]
{
    width: 100%;
    padding: 15px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 20px;
    box-sizing: border-box;             /* Ajustement du forms par rapport à la div */
}
input[type=password] 
{
    width: 100%;
    padding: 15px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 20px;
    box-sizing: border-box;             /* Ajustement du forms par rapport à la div */
}

input[type=date]
{
    width: 100%;
    padding: 15px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 20px;
    box-sizing: border-box;             /* Ajustement du forms par rapport à la div */
}
input[type=submit],input[type=button]
{
    width: 100%;
    background-color: #C0392B;
    color: white;
    padding: 14px 20px;
    margin: 15px 0;
    border: none;
    border-radius: 4px;
    font-size: 30px;
    cursor: pointer;
}
input[type=submit]:hover, input[type=button]:hover
{
    box-shadow: 1px 1px 12px #555;
}
#cadre_formulaire
{
    width: 50%;
    border-radius: 5%;
    background-color: whitesmoke;
    padding: 20px;
}
