.formulaire {
    margin: 15px auto;
    background: rgba(250, 250, 250, 0.9);
    border: 1px solid #ebebeb;
    box-shadow: rgba(0,0,0,0.14902) 0 1px 1px 0, rgba(0,0,0,0.09804) 0 1px 2px 0;
}

input {
    font-size: 18px;
    padding: 10px 0;
    -webkit-appearance: none;
    display: block;
    background: white;
    color: #636363;
    width: 100%;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

.text-right{
    text-align:right;
}

button a{
    color: #fff;
    text-decoration: none;
}

a.white{
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 2.3em 0 1em 0;
    vertical-align: middle;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    background: #eee !important;
    color: #626262 !important;
    border-bottom: none !important;
    border: 1px solid #62626278 !important;
}

button{
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 2.3em 0 1em 0;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    letter-spacing: 1px;
    background: #f88429;
    border: 0;
    border-bottom: 2px solid #f88429;
    font-family: inherit;
    cursor: pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.formulaire table tr img{
    max-width: 300px;
}

.formulaire table tr td{
    padding-top: 8px;
}
.formulaire table{
    margin: 0 auto;
}

#Connexion{
    width: 450px;
}

#Logo{
    text-align: center;
    padding-bottom: 16px;
    padding-top: 0;
}

#Logo h2{
    color: #f08019;
}

#Logo h2, #Logo p{
    text-align: left!important;
}

#FormError{
    margin: 10px auto;
    padding: 15px 30px;

    background-color: #f2dede;
    color: #a94442;

    border: 1px solid #ebccd1;
    box-shadow: rgba(0,0,0,0.14902) 0 1px 1px 0, rgba(0,0,0,0.09804) 0px 1px
}

#FormSucces{
    margin: 10px auto;
    padding: 15px 30px;

    background-color: #d7ffdc;
    color: #00863a;

    border: 1px solid #72ff9f;
    box-shadow: rgba(0,0,0,0.14902) 0 1px 1px 0, rgba(0,0,0,0.09804) 0px 1px
}

.hidden{
    display: none;
}

/******************************
           RESPONSIVE
******************************/
@media screen and (min-width: 641px) {
    body{
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}


@media screen and (max-width: 640px) {
    body{
        transform: translateY(-50%);
        width: 100%;
    }
}


@media screen and (min-width: 380px){
    .formulaire{
        width: 380px;
        padding: 3em 2em 2em 2em;
    }

    .formulaire table{
        width: 350px;
    }

    #FormError {
        width: 380px;
    }
}

@media screen and (max-width: 450px){
    .formulaire, #FormError{
        padding: 15px 10px;
    }

    .formulaire table{
        padding: 10px;
        width: 100%;
    }

    .formulaire table input{
        padding: 10px 0;
    }

    label, input, button, #FormError{
        font-size: 14px !important;
    }
}