/*html {
    background: url(/images/login-bg5.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}*/

body {
    color: #1e71b8;
    font-family: arial;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#login_form {
    width: 300px;
    /*background: #f0f0f0;*/
    border: 1px solid white;
    /*margin: 200px auto 0;*/

    /* Centering */
    height: 290px;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    /* Centering */

    padding: 1em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;

}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    font-family: monospace;
    text-align: center;
}
h6 {
    margin-top: 0;
    font-weight: normal;
    font-family: verdana;
    font-style: italic;
    text-align: center;
    font-size: 10px;
    color: #000033;
}

input[type=text], input[type=password] {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 1em 0;
    width: 280px;
    border: 5px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    padding: 5px;

}

input[type=submit] {
    border: none;
    font-weight: bold;
    margin-left: 232px;
    padding: 6px;
    text-decoration: none;
    font-size: 14px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #1e71b8;
}

input[type=submit]:hover {
    background: #FF6600;
    cursor: pointer;
}

.alert {
    width: 500px;
    margin: 0 auto;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}

.error {
    color: #393939;
    font-size: 15px;
}

.alpha60 {
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(0, 0, 0) transparent;
    /* RGBa with 0.6 opacity */
    background: rgba(0, 0, 0, 0.7);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}