html {
    height: 100%;
}

body {
    padding: 0;
    margin: 0 15px 0 15px;
    font-family: Arial, Verdana, Sans-Serif;
    font-size: 12px;
}

#container {
    min-height: 100%;
    height: 100%;
    height: auto !important;
    position: relative;
}

/*login*/

#login_form {
    width: 300px;
    background: #f0f0f0;
    border: 1px solid black;
    margin: 250px auto 0;
    padding: 1em;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

input[type=text],
input[type=password] {
    display: inline;
    width: 285px;
    border: 1px solid #bbbbbb;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: .5em;
}

#captcha {
    width: 100px;
}

.captcha select {
    border: 1px solid #bbbbbb;
    height: 100%;
    padding: 0.4em;
    float: right;
    border-radius: 3px;
}

img {
    float: left;
    padding-top: 13px;
    padding-right: 10px;
}

input[type=submit],
form a {
    /*float: right;*/
    border: none;
    width: 70px;
    /*margin-right: 1em;*/
    padding: 6px;
    text-decoration: none;
    font-size: 12px;
    background: #000000;
    color: white;
    box-shadow: 0 1px 0 white;
    -moz-box-shadow: 0 1px 0 white;
    -webkit-box-shadow: 0 1px 0 white;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

input[type=submit]:hover,
form a:hover {
    background: #303030;
    cursor: pointer;
}

div.captcha {
    display: block;
}

/* Validation error messages */

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

p.heading {
    text-align: center;
    /* margin: 0 0 1em 0; */
    font-size: 15px;
    font-weight: bold;
}

#footer {
    height: 20px;
    padding: 10px 0;
    width: 100%;
    background: #fff;
    position: absolute;
    bottom: 0;
}

p.footer {
    text-align: right;
    font-size: 11px;
    border-top: 1px solid #D0D0D0;
    line-height: 10px;
    padding: 0 10px 0 10px;
    margin: 20px 0 0 0;
}