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

body {
    color: blanchedalmond;
    font-family: arial;
}

#login_form {
    width: 300px;
    /*background: #f0f0f0;*/
    border: 1px solid white;
    margin: 200px auto 0;
    padding: 1em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;

}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    font-family: arial;
    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: powderblue;
}

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

.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.6);
    /* 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)";
}