/*Page de login*/
body{
    background-color: #F1F1F1;
}

.login-logo{
    position: absolute;
    bottom: 5px;
    right: 16px;
}
.container-login-box {
    height:100%;
}
.login-box {
    width: 344px;
    border-radius: 5px;
    padding: 20px;
    background: white;
    border: 1px solid #CCC;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .login-box {
        position: absolute;
        top: 50%;
        left:50%;
        transform: translate(-50%,-60%);
    }
}

.login-box input.text {
    background-color: #F1F1F1;
    font-size: 16px;
    border-radius: 0;
    padding: 14px 10px;
    width:100%;
}

.login-box input.text.top {
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 0px;
}

.login-box input.text.bottom {
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

/*Zone de notification Flash*/
#flash_container {
    height: 50px;
    position: fixed;
    z-index: 10001;
    top: 0px;
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    cursor: pointer;
    border-bottom: 1px solid #CCC;
}

#flash_container h4 {
    color: #444;
    font-size: 22px;
    padding-top: 5px;
    margin: 2px;
    line-height: 36px;
}

body>#container_user {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #999;
    margin: 10em auto;
    max-width: 100%;
    padding: 2em;
    width: 48em;
}
