.login {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    background-color: #56adff;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-color: #eee;

}

.login:before {
    content: '';
    display: inline-block;
    height: 100%;
    min-height: 100vh;
    width: 0;
    vertical-align: middle;
}

.login-wrapper {
    margin: 40px 0;
    padding: 30px;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 500px;
    border-radius: 3px;
    text-align:left;
}

input.form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    border-radius: 3px;
    padding: 15px 15px 15px 45px;
    height: auto;
}

.form-group {
    position: relative;
}

.input-email:before, .input-password:before {
    position: absolute;
    top: 19px;
    left: 20px;
    font: normal normal normal 14px/1 FontAwesome;
    color: #bbbbbb;
}

.input-email:before {
    content: "\f003";
}

.input-password:before {
    content: "\f023";
    left: 23px;
}

.btn {
    border-radius: 3px;
    padding: 15px;
}