 /* log in page */


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;

}

.logo {
    width: 60px;
    height: 79px;
    display: block;
    margin: 0 auto 15px auto;
    background:  url(../image/logo.png) no-repeat;
    text-indent: -9999px;
}

.login-bg {
    background: url(../image/log-in.jpg) no-repeat top center;
}

 .login {
    margin: 100px auto 0 auto;
    width: 400px;
    padding: 15px 30px 30px 30px;
    overflow: hidden;
    background-color: #efefef;
    -webkit-box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.2);
    box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.2);
}

.login form {
    overflow: hidden;
}

.login .login-fields {
    border: solid 1px #e5e5e5;
    background-color: #fff;
    padding: 15px;
}

.login .login-fields .form-control {
    border: 0;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 5px 1px;
}


.login .form-control:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.login .login-fields #username {
    border-bottom: solid 1px #ddd;
}

.login .btn {
    background-color: #679c16;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0;
    border: solid 1px #679c16;
    padding: 8px 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: auto;
    margin-top: 10px;
}

.login .btn:hover {
    background-color: #86ad03;
}

.login input[type="checkbox"] {
    position: static;
    margin-left: 0;
    margin-top: 0 \9;
    float: left;
    margin-right: 3px;
}

.login .errors ul li{
    list-style: none;
} 

.form-hint {
   font-size: 11px;
}

.terms, .password-reset {
    padding: 10px 0 0 0;
}

.password-reset a {
    color: #428bca;
}

.login label {
    margin: 0;
    font-weight: normal;
    font-size: 14px;
}

.copyright {
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    font-size: 12px;
    color: #eee;
    text-shadow: 0 1px 5px #000;
}

.login.reset #username {
    border-bottom: 0;
}

.login.reset .login-fields {
    padding: 5px 15px;
    margin-bottom: 15px;
}

.alert {
    margin: 15px 0 0 0;
    border-radius: 0;
    padding: 5px 15px;
}

#login-with-google-btn {
    display: block;
    background: url("../image/btn-google.png");
    color: transparent;
    cursor: pointer;
    font-weight: bold;
    padding-bottom: 2px;
    width:191px !important;
    height: 46px !important;
}


 /* 404 page */
 
 .page404 {
     width: 700px;
     height: 252px;
     margin: -150px 0 0 -350px;
     position: absolute;
     left: 50%;
     top: 50%;
 }
 
 .page404 img {
     float: right;
     padding-top: 60px;
 }
 
 .page404 .error-general {
     padding-top: 30px;
 }
 
 .page404 h1 {
     font-size: 60px;
 }
 
 .page404 p {
    font-size: 24px;
    font-family: Roboto;
    font-weight: 400;
    color: #444;
    padding: 10px 0 20px 0;
 }
 
 .page404 .btn-success {
     border-radius: 0;
 }
   
 /* end 404 page */

@media only screen and (max-width:480px){
    
    .copyright {
        position: static;
        padding-top: 40px;
    }
    
     .login {
        width: 300px;
        margin-top: 30px;
         padding: 15px;
    }
    
    .password-reset.pull-right {
        float: none !important;
    }
    
    .terms, .password-reset, .copyright {
        width: 100%;
        display: block;
    }
    
    .password-reset a {
        line-height: 36px;
    }
    
    .page404 {
        width: 80%;
        position: static;
        margin: 0 auto;
        text-align: center;
        padding-top: 30px;
    }
    
    .page404 img,
    .page404 .error-general {
        float: none;
        padding-top: 0;
        width: 100%;
        height: auto;
    }
    
    .page404 img {
        max-width: 360px;
    }
    
    .page404 h1 {
        font-size: 50px;
        line-height: 46px;
    }
    
    .page404 .error-general {
        max-width: 180px;
    }
    
    
}
 
 