.login-container {
    display: flex;
    flex-flow: column;
    flex-grow: 1;
    align-items: center;
    margin-top: 15vh;
    justify-content: space-between;
    margin-left: 1rem;
    margin-right: 1rem;
}

.login-container-body {
    width: 100%;
    max-width: 440px;
}

.login-form-card {
    box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.12), 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
}

.login-form-header {
    display: flex;
    justify-content: space-between;
    flex-flow: row;
    align-items: center;
    margin-bottom: 2rem;
}

@media screen and (max-width: 450px) {
    .login-form-card {
        padding: 30px;
    }
}

.login-form-card header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

#btn-help {
    color: black;
    white-space: nowrap;
}

#help-icon {
    color: #f28100;
    font-size: smaller;
}

#kc-page-title {
    font-weight: normal;
    font-size: 16px;
    font-family: Roboto, Arial, sans-serif;
    color: gray;
    margin-bottom: 1.5rem;
}

.login-form-group {
    margin-bottom: .5rem;
}

#input-error {
    color: red;
}

