/**
 * Style des inputs
 * 
 * @copyright (c) ontheway.ch
 * @author Joëlle Galloni et Pascal Favre
 */

/**
 * Général
 */
input[type=text],
input[type=password],
input[type=date],
input[type=number],
input[type=email],
textarea,
select {
    font-family: inherit;
    border: 1px solid #DADADA;
    border-radius: 3px;
    outline: none;
    font-size: 1em;
    padding: 5px 8px;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    border: 1px solid #F89406;
    box-shadow: 0px 0px 2px #7A7A7A;
}
/* Boutons */
input[type=button],
input[type=submit],
button {
    padding: 7px 10px;
    background: #F2F2F2;
    font-family: inherit;
    border: 1px solid #BABABA;
    outline: none;
    font-size: 1em;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
    border-color: #9A9A9A;
}