html, body {
    bbackground: #FF0000;
    background-image: url("/images/AARMS_LoginScreen_Background.png");
/*    background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: cover; /* Resize the background image to cover the */
    font-family: 'Lucida grande', verdana, sans-serif;
    display: inline;
}


#login {
    width: 500px;
    margin: 50px auto;
    text-align: center;

}

#login h1 {
    font-weight: bold;
    color: #111;
}

#login form {
    border: 5px solid #3a3a3a;
    background: #fff;
    padding: 0px;
    text-align: left;
}

#login form p {
    margin: 3px;
}

#username-field {
    margin-top: 10px !important;
}

#username-field label, #password-field label {
    display: block;
    width: 150px;
    float: left;
    text-align: left;
    margin-right: 5px;
    color: #333;
    font-size: 15px;
}

#username-field input {
    width: 200px;
    font-size: 13px;
}

#password-field input {
    width: 150px;
    font-size: 13px;
}

#remember-field input {
    margin-left: 0px;
}

#remember-field {
    font-size: 12px;
    color: #666;
    float: left;
    text-align: left;
}

#signin-field input {
    margin-left: 0px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: #B89C5F;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 140px;
    height: 30px;
}

#login .error, #login .success  {
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    padding: 5px;
}

#login .error {
    background: #c00 !important;
}

.alert {
    background: #c00 !important;
    color: #fff;
    padding: 10px;
}


.success {
    background: #008800 !important;
    color: #fff;
    padding: 10px;
}

#login a {
    font-size: 12px;
    color: #666;
}

#login a:hover {
    font-size: 12px;
    color: #0F81C2;
}

