* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Arial, Tahoma;
    font-size: 12px;
}

.loginform {
    float: left;
    width: 100%;
    position: relative;
    background: #fff;
    min-height: 670px;
}

.loginform .boxform {
    background: #fff;
    width: 450px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 100px;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
}

.loginform .boxform h1 {
    font-size: 12px;
    color: #999;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px;
}

.loginform .boxform label {
    float: left;
    width: 130px;
    font-size: 14px;
    color: #666;
}

.loginform .boxform input#LoginForm_username,
input#LoginForm_password {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .07);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .07);
    background-color: #fff;
    color: #333;
    -webkit-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    font-size: 24px;
    line-height: 1;
    width: 100%;
    padding: 3px;
    margin: 2px 6px 16px 0;
    border: 1px solid #dedede;
}

.loginform .boxform .row {
    display: block;
    margin: 10px 0px;
}

.loginform .boxform .buttons input {
    background: #006193;
    height: 35px;
    width: 100px;
    margin-top: 10px;
    color: #fff;
    border: none;
    margin-left: 150px;
    cursor: pointer;
    border-radius: 3px;
}

.errorMessage {
    color: #f30;
}

div.form div.success input,
div.form div.success textarea,
div.form div.success select,
div.form input.success,
div.form textarea.success,
div.form select.success {
    background: #E6EFC2;
    border-color: #C6D880;
}

div.form div.error label,
div.form label.error,
div.form span.error {
    color: #C00;
}

div.form div.error input,
div.form div.error textarea,
div.form div.error select,
div.form input.error,
div.form textarea.error,
div.form select.error {
    background: #FEE;
    border-color: #C00;
}