input[type="text"], input[type="number"], input[type="password"], select
{
    width: 200px;
    padding: 10px;

    font-size: 13pt;
    font-family: 'easyResto 2';

    background-color: #484848;
    color: #99d8ea;

    border-radius: 5px;
    border: 1px solid #333333;
}

input[type="text"].quantite
{
  width: 30px;
  text-align: right;
  margin-left: 10px;
  margin-right: 10px;
}

select
{
    width: 220px;
}

input[type="button"]
{
    padding: 10px;
    border-radius: 5px;

    font-size: 13pt;
    font-family: 'easyResto 2';

    color: #EEEEEE;

    border: 1px solid #333333;
    background-color: #333333;

    cursor: pointer;
}

input[type="button"]:hover
{
    background-color: #555555;
}

input[type="text"].error
{
    background-color: #FF8888;
}

.checkBox
{
    display: inline-block;
    vertical-align: middle;

    float: right;
    margin-right: 2px;

    width: 30px;
    height: 30px;

    background-color: #484848;

    border-radius: 5px;
    border: 1px solid #333333;

    cursor: pointer;
}

.checkBox.checked
{
    background-image: url(../img/boutons/checked.png);
    background-repeat: no-repeat;
    background-position: center;
}
