html, body {
    height: 100%;
}

body{
    background-image: url('/public/images/low_contrast_linen.png');
}

img#logo {
    position: absolute;
    width: 300px;
    height: auto;
    top: 100px;
    left: 50%;
    margin-left: -150px;
}

#login-form {
    position: absolute;
    display: block;
    color: #999;
    font: 100%/1.5em sans-serif;
    left: 50%;
    top: 200px;
    margin: 0 0 0 -250px;
    width: 500px;
    z-index: 9999;
}

#login-form h3 {
    background-color: #282830;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

#login-form a {
    color: #999;
    text-decoration: none;
}

#login-form a:hover { color: #234093; }

#login-form fieldset {
    border: none;
    margin: 0;
    background: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px 20px;
    position: relative;
    text-align: center;
}

#login-form fieldset:before {
    background-color: #fff;
    content: "";
    height: 8px;
    left: 50%;
    margin: -4px 0 0 -4px;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
}

#login-form input {
    border: none;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    -webkit-appearance: none;
    font-size: 14px;
}

#login-form input:focus {
  outline: none;
}

#login-form input[type="text"],
#login-form input[type="password"] {
    border: 1px solid #dcdcdc;
    margin-bottom: 10px; 
    padding: 12px 5%;
    width: 60%;
    color: #CCC;
}

#login-form input[type="text"] {
    border-radius: 3px 3px 0 0;
}

#login-form input[type="password"] {
    border-radius: 0px 0px 3px 3px;
}

#login-form input[type="submit"] {    
    cursor: pointer;
    background: #313131;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    padding: 12px 20px;
}

#login-form input[type="submit"]:hover { background: #444444; }

#login-form div.clearfix{
    font-size: 12px;
    margin-top: 16px;
    *zoom: 1;
}

#login-form div.clearfix:before, .#login-form div.clearfix:after {
    content: "";
    display: table; 
}

#login-form div.clearfix:after { clear: both; }

#login-form .info {
    background: #e5e5e5;
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin: 0 10px 0 0;
    text-align: center;
    width: 20px;
}

@media screen and (max-width: 500px){
    img#logo {
        top: initial;
        left: initial;
        margin: 0px;
        width: 100%;
        height: auto;
        position: relative;
    }

    #login-form {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    #login-form form {
        height: 100%;
    }

    #login-form fieldset {        
        height: 100%;
        min-height: 300px;
        border-radius: 0px;
    }
}