/* ==========================================================================
   Login Box styles
   ========================================================================== */

/*Change Backgound image here */
html{
    background: #000 url(../img/body/lights.jpg) top center;
    height:100%;
}
body{
    background: transparent url(../img/login-bg-overlay.png) repeat;
    min-height:100%;
}
.alert{
    margin: 20px auto;
    width: 70%;
}
#login-block{
    padding-top: 50px;
    padding-bottom: 25px;
}
#login-block h3{
    color: #FFF;
    text-align: center;
    font-size:1.5em;
    opacity: 0.8;
    text-shadow: 2px 2px 2px #000;
    font-weight: normal;

}
.login-box{
    max-width:480px;
    background: transparent url(../img/login-bg.png) repeat;
    border:7px solid rgba(255, 255, 255, 0.31);
    -webkit-background-clip: padding-box; /* for Safari */
    -moz-background-clip: padding-box; /* for old Firefox */
    -o-background-clip: padding-box; /* for old Firefox */
    background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding-bottom: 20px;
}
.login-logo{
    text-align: center;
    padding: 15px 0 10px;
}
.login-logo img{
    border:0;
}
.login-form form p{
    width:80%;
    margin: 5px auto 10px;
    text-align: center;
}
.login-logo a{
    opacity: 0.7;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.login-logo a:hover{
    opacity: 1;
}
.login-box hr{
    margin:10px auto 20px;
    width:70%;
    border-top:1px solid #dddbda;
    border-bottom:1px solid #FFF;
}
.login-form input{
    display: block;
    margin:0 auto 15px;
    width:70%;
    background: #d6d6d6;
    border:1px solid #bfbfbf;
    color:#6c6c6c;
    padding: 8px;

}
.btn.btn-red {
    width: 120px;
    display:block;
    margin: 20px auto 20px;
    color: white;
    text-transform:uppercase ;
    text-shadow: 1px 2px 2px #2f6890;
    background: #0b4370;
    border: 1px solid #072e52;
    -webkit-box-shadow: inset 0 1px 2px #265575;
    -moz-box-shadow: inset 0 1px 2px #1285ff;
    box-shadow: inset 0 1px 2px #30b3ff;
    -webkit-transition: background .5s ease-in-out;
    -moz-transition: background .5s ease-in-out;
    -o-transition: background .5s ease-in-out;
    transition: background .5s ease-in-out;
}
.btn.btn-red:hover {
    background: #0c81db;
}
.btn.btn-red.btn-reset{
    width: 180px;
}
.login-links{
    text-align: center;
}
.login-links a{
    color: #3779a8;
    display:inline-block;
    padding:5px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;;
}
.login-links a:hover{
    text-decoration: none;
    color: #979797;
}
label.checkbox {
    width: 70%;
    display: block;
    margin: 0 auto;
}
label.checkbox input{
    width:25px;
    margin: 4px 0 0;
    padding: 0;
    background: none;
    border: 0;
}
#footer-text, #footer-text a{
    text-align: center;
    color:#FFF;
    opacity: 1;
    text-shadow: 1px 1px 1px #000;
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers)
=================================================================== */
@media only screen and (max-width: 479px) {
    #login-block{
        padding-top: 10px;
        padding-bottom: 25px;
    }
}
/* Tablet Portrait Size to Tablet Landscape Size (devices and browsers)
=================================================================== */
@media only screen and (min-width: 480px) and (max-width: 767px){
    #login-block {
        margin: 0 auto;
        width: 420px;
    }
}
