html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #abbbc3;
    color: #546e7a;
    display: flex;
    flex-direction: row;
    font-family: Roboto, Arial, sans-serif;
    justify-content: space-around;
    align-items: center;
}

.login-page {
    background: #ffffff;
    border-radius: 0.25rem;
    box-shadow: 0 0 2rem #444444;
    padding: 3rem 5rem;
}

.login-page-header {
    background: url("../img/logo-top.svg") no-repeat center center;
    height: 5rem;
}

.login-page-header > #kc-header-wrapper {
    display: none;
}

.card-pf {
    margin: 3rem 0 0;
}

.login-header {
    margin: 1rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    position: relative;
    width: 100%;
}

.form-group .form-label {
    transition: all 0.3s ease-in-out;
}

.form-group:focus-within .form-label {
    text-shadow: 0 0 1px #555;
}

.form-group .form-control {
    border: 0;
    border-bottom: 1px solid #cccccc;
    font-size: 1rem;
    outline: none;
    padding: 0.5rem 0.2rem;
    transition: all .2s ease;
    width: 100%;
}

.form-helper {
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.5rem;
}

.form-error {
    color: #FF0000;
    background: url("../img/feedback-error-sign.png") no-repeat left center;
    padding-left: 1.5rem;
}

.btn-primary {
    background-color: #ff5208;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    color: #e7e7e7;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.5rem;
    outline: none;
    padding: 0.5rem;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 0.4rem #ff8d5c;
    color: #ffffff;
}