html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0px;
}

.login-wrapper {
    background-color: #004e97;
    background-image: url('../images/background/login.jpg');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper img {
    margin-bottom: 70px;
    max-width: 100%;
}

.form-wrapper {
    background-color: white;
    padding: 40px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px 2px rgba(0,0,0,0.5);
    max-width: 90%;
    width: 362px;
}

.login-wrapper input {
    color: #595959;
}

.login-wrapper input::placeholder {
    color: #8c8c8c;
    text-align: center;
}

.login-button {
    width: 100%;
}

.field-wrapper:first-of-type {
    margin-bottom: 40px;
}

.field-wrapper {
    position: relative;
}

.field-wrapper i {
    position: absolute;
    /*color: #8c8c8c;*/
    left: 2px;
    top: 5px;
}

.field-wrapper input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #8c8c8c;
    outline: none;
    padding-left: 30px;
}

.field-wrapper input:placeholder-shown {
    padding-left: 0px;
}

.field-wrapper.active input, .field-wrapper.active i {
    color: #004e97;
}

.field-wrapper.has-error input, .field-wrapper.has-error i {
    color: #004e97;
}

.field-wrapper.has-error input {
    border-bottom: 1px solid #004e97;
}

.error-msg {
    color: #004e97;
    float: left;
    font-size: 14px;
}

.remember-me {
    font-size: 14px;
    color: #8c8c8c;
    text-align: right;
    margin-top: 5px;
}

.submit-wrapper {
    margin: 20px 0px;
    text-align: center;
}

.questions-wrapper {
    text-align: right;
    color: #8c8c8c;
    font-size: 11px;
    margin-right: -25px;
}
