html, body {
    height: 100%;
}

body {
    padding-top: 0px;
    background: #eee url("../../img/login_background.jpg") no-repeat fixed center;
    background-size: cover;
}

.login-form {
    min-height: 600px;
    max-width: 460px;
    padding: 50px;
    margin: auto auto 50px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: 0px 2px 7px #666666;
    -moz-box-shadow: 0px 2px 7px #666666;
    box-shadow: 0px 1px 7px #666666;
}

.login-form-header > img {
    display: block;
    margin: auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.btn {
    line-height: 2;
    border-radius: 28px;
    -webkit-box-shadow: 0px 2px 7px #666666;
    -moz-box-shadow: 0px 2px 7px #666666;
    box-shadow: 0px 2px 7px #666666;
    background: #3b67c0;
}

.btn:hover {
    background: #3b67c0;
}

.login-form-control {
    display: inline-block;
    border: 0 solid rgba(255, 255, 255, 1);
    border-bottom: 2px solid #ccc;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #f5f5f5 none;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.login-form-password {
    letter-spacing: 8px;
    word-spacing: 8px;
    padding-left: 20px;
}