@font-face {
  font-family: "GothamB";
  src: url("../fonts/GothamB.otf");
}
body
{
    font-family: GothamB, Verdana, Arial, sans-serif;
    font-size: 0.7em;
    color: #1e1e1e;
}
.contenu
{
    width:100%;
}
header
{
    width:100%;
    margin-bottom: 30px;
}
header img
{
    margin-right: 30px;
    float: left;
}
h1
{
    font-size: 1.5em;
    margin-bottom: 0;
    line-height: 88px;
    font-weight: normal;
}
section
{
    width: 100%;
}
.error
{
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgb(255, 0, 0);
    color: #1e1e1e;
    width: 100%;
    padding: 10px;
    word-wrap: break-word; 
    margin-bottom: 10px;
    text-align: center;
}
form
{
    padding: 20px;
    width: 345px;
    text-align: center;
}
label
{
    font-size: 1em;
    font-family: Verdana, Arial, sans-serif;
    display: block;
}
input
{
    margin: 0 auto;
    font-family: Verdana, Arial, sans-serif;
    padding: 5px;
    border: 1px solid #ccc;
    display: block;
}
input:focus
{
    outline: Lightblue solid 2px;
}
input[type=submit]
{
    margin-top:0;
    font-size: 1em;
    display: block;
    color: white;
    padding: 10px 20px;
    background-color: #1e1e1e;
    text-align: center;
    vertical-align: center;
    transition: background-color 0.5s;
    cursor: pointer;
    border: none;
    box-shadow: none;
}
input[type=submit]:hover
{
    background-color: LightBlue;
    transition: background-color 0.5s;
}
input[type=submit]:focus
{
    outline: none;
}