/**
* Css Login 
*/

.container-page, body, html {
    height: 100%;
    width: 100%
}
body {
    color: #888686;
    overflow: hidden;
    background: whitesmoke;
}

.container-page.container-hide{
    display: none;
}

.container-page {
    display: inline-flex;
    overflow-y: auto;
    background-image: url(../../../img/background/login-8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 500px){
    .container-page {
        background-image: url(../../../img/background/login-mobile.jpg);
    }
}

.login-card{
    width: 350px;
    margin: auto;
    background: white;
    padding: 5px 0px 5px 0px;
    -webkit-box-shadow: 0 3px 9px 0 rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
    box-shadow: 0 3px 9px 0 rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
}

.login-card-content{
    min-height: 200px;
}

.div-user-picture{
    text-align: center;
    padding: 50px 0px 30px 0px;
}
.div-user-picture > img{
    width: 210px;
}

.div-user-form{
    margin: 0px 7%;
}

.input-custom{
    margin-top: 15px;
    width: 100%;
    max-width: 100%;
    height: 31px;
    padding: 6px 12px;
    font-size: 1.122em;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #dcdcdc;
}

.input-custom:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    box-shadow: 0 0 0 30px white inset;
    color: #555;
}

.input-custom.error, .input-custom.error:focus{
    border-bottom-color: #fcacae;
}


.input-custom:focus{
    outline: none;
    border-bottom-color: #5da8ce;
}

.form-group label{
    font-size: 1.05em;
    font-weight: 500;
    margin-bottom: 0px;
}

.input-custom::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 1.05em;
    color: #9d9d9d;
}

.input-custom::-moz-placeholder { /* Firefox 19+ */
    font-size: 1.05em;
    color: #9d9d9d;
}

.input-custom:-ms-input-placeholder { /* IE 10+ */
    font-size: 1.05em;
    color: #9d9d9d;
}

.input-custom:-moz-placeholder { /* Firefox 18- */
    font-size: 1.05em;    
    color: #9d9d9d;

}


.div-divider{
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.a-default, .a-right, .a-left{    
    cursor: pointer;
}

.a-left{
    float: left;      
    /*color: #888686;  */
    padding: 0px 15px 5px;
}


.a-right{
    /*color: #888686;*/
    float: right;    
    padding: 0px 15px 5px;
}

.btn-custom{
    float: right;
    min-width: 70px;
}

.div-btns{
    margin-top: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.div-inline{
    position: relative;
    display: inline-block;
    width: 100%;
}

.div-center{
    text-align: center;
    width: 100%;
}

.custom-form-group .form-group{
    margin-bottom: 10px;
}

.g-recaptcha {
    margin-top: 20px;
}

.label-form-error{
    padding-top: 2px;
    padding-left: 5px;
    font-size: .98em;
    font-weight: 500;
    color: #f73d3d;
    margin-bottom: 0;
}

.div-error{
    display: none;
    color: #f73d3d;
    text-align: center;
}

.div-message{
    display: none;
    text-align: center;
}

.div-message.error{
    color: #f73d3d;    
    display: block;
}

.div-message.success{
    color: green;    
    display: block;
}

.div-error.on{
    display: block;
}

.div-radios-group{
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding: 14px 0px 5px 0px;
    border-bottom: 1px solid #ddd;
}

.label-radio {
    display: inline-block;
    cursor: pointer;
    padding-left: 12px;
    font-weight: 500;
    color: #000000ba;
    margin-bottom: 10px;
}

.label-radio > input[type="radio"]{
    float: left;
}

.label-radio > input[type="radio"]:focus{
    outline: none;
}

.label-radio > span{
    margin-left: 32px;
    display: block;
}

@media screen and (max-width: 400px){
    .container-page{
        padding: 10px;
    }

    .login-card {
        width: 100%;
        margin: auto 0px;
    }

    .div-user-picture > img {
        width: 170px;
    }

    .input-custom {
        font-size: 1em;
    }
}