* {
    font-family: Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    color: white;
    text-shadow: 0 0 0.2em #87F, 0 0 0.2em #87F, 0 0 0.2em #87F;
    font-size: 40px;
}

li {
    list-style: none;
}

#login-wrapper {
    position: absolute;
    z-index: 2;
    width: 350px;
    height: 480px;
    top: 50%;
    left: 50%;
    margin-left: -175px;
    margin-top: -325px;
}

#login-top {
    text-align: left;
    width: 330px;
    margin: 0 auto;
    clear: both;
}

p label {
    width: 70px;
    float: left;
    padding: 8px;
    line-height: 27px;
    margin-top: -4px;
}

#remember-input label {
    float: right;
    width: 200px;
}

#remember-input input {
    float: none;
    width: auto;
    border: 0;
    background: none;
    margin: 0 10px 0 0;
}


#login-content {
    background-color: white;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    color: #666;
    font-weight: bold;
    text-align: left;
    width: 330px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #7d7e7d;
}

#login-content p {
    overflow: hidden;
}

#login-content .fheader {
    padding: 10px;
    border-bottom: 1px solid #7d7e7d;
}

input.text-input {
    width: 180px;
    float: right;
    margin-right: 10px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background: #fff;
    /*border: solid 1px transparent;*/
    color: #555;
    padding: 8px;
    font-size: 13px;
    border: 1px solid #7d7e7d;
}

input.button {
    margin-left: 10px;
    padding: 6px 10px;
    color: #fff;
    font-size: 14px;

    width: 310px;
    padding: 8px;

    background: #b5bdc8; /* Old browsers */
    background: -moz-linear-gradient(top, #b5bdc8 0%, #828c95 36%, #28343b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b5bdc8), color-stop(36%,#828c95), color-stop(100%,#28343b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b5bdc8 0%,#828c95 36%,#28343b 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=0 );*/ /* IE6-9 */


    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    text-align: right;
}

input.button:hover {

    background: #cedce7; /* Old browsers */
    background: -moz-linear-gradient(top, #cedce7 0%, #596a72 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cedce7), color-stop(100%,#596a72)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #cedce7 0%,#596a72 100%); /* IE10+ */
    background: linear-gradient(to bottom, #cedce7 0%,#596a72 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 );*/ /* IE6-9 */

    color: #fff;
}

div.error {
    padding: 8px;
    background: rgba(52, 4, 0, 0.4);
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: solid 1px transparent;
    margin: 6px 0;
}

.message, .errors {
    margin: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #ddd;
    padding: 0.8em;
}

.errors {
    background: #fbe3e4;
    color: #8a1f11;
    border-color: #fbc2c4;
}

.message {
    border-color: #92cae4;
    background-color: #d5edf8;
    color: #205791;
}