body, html{
    width:100%;
    height:100%;
}
body{
    background: url('/ui_resources/images/calendar/login-bg.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, 
.has-error .help-block, .has-error .radio, .has-error .radio-inline, 
.has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #dd4b39;
}

.has-error .form-control {
    border-color: #dd4b39;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 2px;
    left: 50%;
    margin-left: -250px;
    margin-top: -120px;
    position: absolute;
    top: 50%;
    width: 500px;
    box-shadow: 0 0 10px 4px rgba(0, 0, 2, 0.5);
}
.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: none;
    color: #555;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 4px 8px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
.app-name{
    color: #1565c0;
    font-size: 32px;
    text-align:center;
    margin-bottom:24px;
}
.password-wraper{
    overflow:hidden;
}
.submit-btn-wraper{
    float:right;
}
.submit-btn {
    background-color: #4d90fe;
    border: medium none;
    border-radius: 0 2px 2px 0;
    color: #fff;
    font-size: 24px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    width: 34px;
    font-size:0;
}
.submit-btn:hover{
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    background-color: #4d90fe;
}
.submit-btn i{
    vertical-align:middle;
    font-size:24px;
}
input#password{
    border-radius:2px 0px 0px 2px;
    border-right:none;
}
.logo{
    text-align:center;
    margin-bottom:8px;
}
.password-des{
    margin-bottom:16px;
}
/* media queries ------------------ */
@media only screen and (max-width : 480px) {

    .login-container {
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #ccc;
        border-radius: 2px;
        height: auto;
        margin:50px auto 0 auto;
        position: static;
        width:90%;
        box-shadow: 0 0 10px 4px rgba(0, 0, 2, 0.5);
    }
    .app-name {
        color: #1565c0;
        font-size: 20px;
        margin-bottom: 24px;
        text-align: center;
    }
}

@media only screen and (max-width : 320px) {

}

.alert-success {
    background-color: rgba(255, 255, 255, 0);
    border: none transparent;
    padding: 0;
    margin-bottom: 10px;
    margin-top: 5px;
}