body {
    background: url('../images/dark-honeycomb.png');
}

#login-body {
    position: relative;
    margin: 30px auto;
    background: #fff;
    width: 350px;
    padding: 40px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#login-logo,
#login {
    border: none;
}

#login-logo {
    background: #fff;
    margin-bottom: 15px;
}

#login-body p {
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #636363;
}

input[type=text], input[type=password] {
    outline: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: #ccc;
    font-family: "Roboto";
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: 0.2s linear;
}

input[type=text]:focus, input[type=password]:focus {
    color: #333;
    border: 1px solid #44c4e7;
}

input[type=submit] {
    cursor: pointer;
    background: #44c4e7;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    color: #fff;
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 400;
}

input[type=submit]:active,
input[type=submit]:hover {
    background: #369cb8;
}

.lt-ie9 input[type=text], .lt-ie9 input[type=password] {
    line-height: 34px;
}

#pwd, #user, #old_pwd, #new_pwd, #retype_new_pwd {
    width: 100%;
}