body
{
    background: url(../Images/loginBg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
html, body
{
    position: relative;
    height: 100%;
}
.login-container-fixed
{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -370px 0 0 -175px;
}
.login-container
{
    position: relative;
    width: 350px;
    margin: 30px auto;
    padding: 20px 30px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}
.login-container .login-title
{
    margin: 0;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}
.login-container .login-title span
{
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: normal;
}
.login-container label
{
    display: block;
    text-align: left;
    margin-top: 5px;
}
#output
{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}
#output.alert-success
{
    background: rgb(25, 204, 25);
}
#output.alert-danger
{
    background: rgb(228, 105, 105);
}
.login-container::before, .login-container::after
{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 3.5px;
    left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;
}
.login-container::after
{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
    -moz-transform: rotateZ(-2deg);
    -ms-transform: rotateZ(-2deg);
}
.avatar
{
    width: 100px;
    height: 100px;
    margin: 10px auto 20px;
    border-radius: 100%;
    border: 2px solid #aaa;
    background: #fff url(../Images/HospitalUploadLogo/vass-logo.png) 3px 3px no-repeat;
    background-size: 90px auto;
}
.form-box input, .form-box select
{
    width: 100%;
    padding: 10px;
    text-align: center;
    height: 40px;
    border: 1px solid #ccc;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
}
.form-box input:focus, .form-box select:focus
{
    outline: 0;
    background: #eee;
    box-shadow: none;
    border: 1px solid #ccc;
}
.form-box input[type="text"]
{
    border-radius: 5px 5px 0 0;
    text-transform: lowercase;
}
.form-box input[type="password"]
{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}
.form-box button.login
{
    margin-top: 15px;
    padding: 10px 20px;
}
@media (max-width: 767px)
{
    .login-container-fixed
    {
        position: static;
        top: 50%;
        left: 50%;
        margin: 0;
    }
}
@media (max-width: 480px)
{
    .login-container
    {
        width: 280px;
        margin: 25px auto;
        padding: 15px 20px;
    }
    .avatar
    {
        width: 80px;
        height: 80px;
        background-size: 70px auto;
        margin: 0 auto 10px;
    }
    .login-container::before, .login-container::after
    {
        display: none;
        border: 1px solid #ccc;
    }
    .login-container .login-title
    {
        font-size: 16px;
        margin: 0 0 10px;
    }
    .login-container .login-title span
    {
        font-size: 20px;
    }
    .form-box input, .form-box select
    {
        height: 35px;
        padding: 0 5px;
    }
}
