* {
    outline: none;
    font-family: "Roboto", "Hind", "Helvetica Neue", "Helvetica", sans-serif, Arial;
    /*  font-weight: 400;
        font-size: 12px;
    */
}
html, body {
    display: flex;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    flex-flow: column;
    background-image: url("../../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

header {
    margin: 0px;
    padding: 0px;
    width: 100%;
    position: fixed;
    background-color: #373435;
    box-shadow: 0px 2px 2px #4c4c4c;
    z-index: 19;
}
header .header-logo {
    display: inline-block;
    width: 316px;
    float: left;
    text-align: center;
    padding: 8px 16px;
}
header .header-logo img {
    height: 28px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 30px;
    background-color: #373435;
    box-shadow: 0px 2px 2px #6c6c6c;
    color: #f7f7f7;
    flex: 0 1 auto;
    z-index: 19;
}
footer {
    display: block;
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0;
    background-color: #373435;
    color: #f7f7f7;
    box-shadow: 0px 2px 2px #6c6c6c;
}  
footer h5 {

    display: inline-block;
    font-size: 12px;
    margin: 7px;
    padding: 0px;
    float: right;
}   
footer h5#copyrights {
    float: left;
    display: inline-block;
    margin: 7px;
    padding: 0px;
}  
footer h5 {
    display: inline-block;
    margin: 7px;
    padding: 0px;
}
footer h5 a {
    text-decoration: none;
    color: rgba(16, 128, 242, 0.65);
    transition: all .2s;
}
footer h5 a:hover {
    color: #1080f2;
}

.page-content {
    position: relative;
    display:inline-block;
    margin-top: 45px;
    padding: 15px 0px;
    text-align:left;
    flex: 1 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.login-container {
    padding: 30px;
    max-width: 350px;
    /*width: 100% !important;*/
    background-color: rgba(255, 255, 255, 0.75);
    margin: 25px auto;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: roboto;
}
.login-container .logo-small {
    text-align: center;
}
.login-container .logo-small img {
    content: url("../images/logo.png");
    width: 220px;
}
.login-container p {
    text-align: center;
    font-size: 1.8em;
    font-family: roboto;
    margin: 10px auto;

}
.login-container a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    opacity: 0.6;
    transition: opacity ease 0.5s;
} 
.login-container .login-form input[type=submit] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.login-container .login-form input[type=text], input[type=password] {
    height: 44px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    /* border-radius: 2px; */
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.login-container .login-form input[type=text]:hover, input[type=password]:hover {
    border: 1px solid #b9b9b9;
    border-top: 1px solid #a0a0a0;
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.login-container .login-form .btn-login-submit {
    /* border: 1px solid #3079ed; */
    border: 0px;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,0.1); 
    background-color: #4d90fe;
    padding: 17px 0px;
    font-family: roboto;
    font-size: 14px;
    /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}
.login-container .login-form .btn-login-submit:hover {
    /* border: 1px solid #2f5bb7; */
    border: 0px;
    text-shadow: 0 1px rgba(0,0,0,0.3);
    background-color: #357ae8;
    /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}
.login-container .login-help p {
    font-size: 12px;
    font-family: roboto;
    margin: 10px auto;
    color: #F44;
}

#modal-password {
    height: inherit;
    margin: 10% auto;
}
#modal-password .modal-dialog {
    margin: 0px auto;
}
#modal-password .modal-dialog .modal-content {
    border-radius: 2px;
}
#modal-password .modal-dialog .modal-content .modal-body {
    font-size: 14px;
    margin: 10px 40px 5px 40px;
}
#modal-password .modal-dialog .modal-content .modal-body .recover-container {
    padding: 5px 40px;
}
#modal-password .modal-dialog .modal-content .modal-body .recover-container .form-recover input[type=submit] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
#modal-password .modal-dialog .modal-content .modal-body .recover-container .form-recover input[type=text], input[type=password] {
    height: 44px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    /* border-radius: 2px; */
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#modal-password .modal-dialog .modal-content .modal-body .recover-container .form-recover input[type=text]:hover, input[type=password]:hover {
    border: 1px solid #b9b9b9;
    border-top: 1px solid #a0a0a0;
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

#modal-password .modal-dialog .modal-content .modal-footer {
    text-align: center;
}
#modal-password .modal-dialog .modal-content .modal-footer button {
    min-width: 120px;
    min-height: 40px;
}
#modal-password .modal-dialog .modal-content .modal-footer .recover-button-submit {
    padding: 17px 0px;
    background-color: #4d90fe;
    text-shadow: 0 1px rgba(0,0,0,0.1); 
    color: #fff;
    border: 0px;
    font-size: 14px;
}
#modal-password .modal-dialog .modal-content .modal-footer .recover-button-submit:hover {
    background-color: #357ae8;
    border: 0px;
    text-shadow: 0 1px rgba(0,0,0,0.3);
}

.modal.fade.in { 
    top: 50%; 
    transform: translateY(-50%); 
} 

@media only screen and (max-width : 480px) {
    header .header-logo {width: 100%;}
    header .header-logo img {
        content: url("../images/slogan-inverse.png");
    }

    .page-content { 
        display: flex;
        padding: 0px; 
        margin-bottom: 30px;  
    }
    .page-content .container-fluid { 
        display: flex; 
        margin: 0px 0px; 
        padding: 0px; 
        width: 100%;
        align-items: stretch; 
    }
    .page-content .container-fluid .row { 
        display: flex; 
        margin: 0px 0px; 
        padding: 0px; 
        width: 100%;
        align-items: stretch; 
    }

    .login-container {
        margin: 0px;
        padding: 30px;
        min-width: 100%;
        min-height: 100%;
        border-radius: 0px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        background-color: rgba(255, 255, 255, 0.75);
        overflow: hidden;
    }
}
