body {
    font-size:13px;
    font-family:arial;
    margin:0;padding:0;
    background:#EEE;
}

body * {
    box-sizing:border-box;
}

#global {
    width:500px;
    margin:auto;
    margin-top:200px;
}

#global img {
    display:block;
    height:70px;
    float:right;
    background:white;
    margin-top:-20px;
}

#global h1 {
    font-size:1.5em;
    color:#444;
    border-bottom:1px solid #B40000;
}

#form-connection {
    margin:auto;
    clear:both;
    padding:50px;
    -moz-box-shadow: 0px 0px 20px #BABABA;
    -webkit-box-shadow: 0px 0px 20px #BABABA;
    box-shadow: 0px 0px 20px #BABABA;
    min-height:100px;
    background:white;
    border:1px solid #CCC;
}

/* ================ FORMULAIRES ======================= */

.form {
    margin:auto;
    margin-top:25px;
}

.form fieldset {
    padding:15px;
    border:none;
    border:1px solid #121e4d;
    margin-top:40px;
    position:relative;
}

.form fieldset legend {
    background:#121e4d;
    color:white;
    height:16px;
    font-weight:bold;
    padding:2px 10px;
    position:absolute;
    left:-1px;
    top:-20px;
    border-radius:5px 5px 0 0;
    -moz-border-radius:5px 5px 0 0;
    -webkit-border-radius:5px 5px 0 0;
}

.form label , .form .label {
    display:block;
    font-size:1.1em;
    color:#444;
}

.form input[type=checkbox] {
    position:relative;
    top:1px;
}

.form input[type=text] , .form input[type=password] {
    display:block;
    float:left;
    width:100%;
    border:1px solid #CCC;
    padding:5px 10px;
}

.form input[type=text]:focus , .form input[type=password]:focus {
    outline:1px solid #B40000;
}

.form input[type=submit] {
    display:block;
    width:150px;
    background:#B40000;
    margin:auto;
    clear:both;
    margin-top:20px;
    color:white;
    border:none;
    cursor:pointer;
    width:100%;
    padding:10px 10px;
    font-size: 1.1em;
}

.form select {
    display:block;
    float:left;
    min-width:200px;
}

.form input[type=submit]:hover {
    cursor:pointer;
    background:#7C0000;
}

.form ul:after {
  content: ""; 
  display: block;
  clear: both;
}

.form ul {
    margin:0;
    padding:0;
}

.form li {
    padding-top:5px;
    overflow:hidden;
    clear:both;
    list-style:none;
    margin-top:10px;
}

.form .checkboxes {
    
}

.form .checkboxes label {
    display:inline;
    float:none;
    width:auto;
    margin-right:5px;
    padding-top:0;
    border:none;
}

.bulle {
    padding:10px;
    background:#e6e9f8;
    border:1px solid #99ace1;
    line-height:20px;
}

.bulle.message {
    background:#87fe7c;
    border:1px solid #2c9c00;
    clear:both;
}

.bulle.error {
    background:#eee;
    border:1px solid #B40000;
    clear:both;
}
.bulle.error:before {
    content:"\f00d";
    padding-right:10px;
    font-family: "FontAwesome";
    color:#B40000;
}

