:root {
    --c-primary: #03AFAC;
    --c-primary-text: white;

    --c-primary-tonal: #a9e8e7;
    --c-primary-tonal-text: black;

    --c-text-primary: #000;
    --c-text-alt: #fff;

    --c-background: #fff;

    --c-hover: rgba(0, 0, 0, 0.1);

    --box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.05);

    --spacing: 0.25rem;

    --border-type: solid;
    --border-width: 1px;
    --border-color: rgba(0, 0, 0, 0.2);
    --border: var(--border-type) var(--border-width) var(--border-color);
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    height: 100vh;
}

.login-pf body {
    background: url("../images/login-splash.jpg") no-repeat center;
    background-size: cover;
}

.sidebar {
    width: 550px;
    max-width: 100%;
    float: right;
    background-color: var(--c-background);
    height: 100%;
    margin: 0;
    position: relative;
    box-shadow: var(--box-shadow);
    padding: calc(var(--spacing) * 4);

    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
}

.logo {
    display: block;
    max-width: 33.33%;
    margin-left: auto;
    margin-right: auto;
}

#kc-info {
    margin: 0;
}

#kc-info-wrapper {
    padding: calc(4 * var(--spacing));
}

#kc-header {
    margin-bottom: 0;
}

.login-pf-page .card-pf {
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-top: none;
    max-width: 100%;
}

.form-group {
    margin-bottom: calc(2 * var(--spacing));
}

.input-group {
    width: 100%;
    display: flex;
}

input[type="submit"],
input[type="button"] {
    border-radius: 25px;
    border: none;
    font-size: 14px;
    padding: 0 16px;
    font-weight: normal;
    height: 40px;
    display: inline-flex;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

.pf-c-form-control {
    border: 1px solid #CCC;
}

.pf-c-button {
    --pf-c-button--m-primary--BackgroundColor: var(--c-primary-tonal);
    --pf-c-button--m-primary--Color: var(--c-primary-tonal-text);
    transition: background-color 200ms linear;
}

.pf-c-button:hover {
    --pf-c-button--m-primary--hover--BackgroundColor: var(--c-primary);
    --pf-c-button--m-primary--hover--Color: var(--c-primary-text);
    transition: background-color 200ms linear;
}

.pf-c-button.pf-m-control {
    background-color: transparent;
    border: 1px solid #CCC;
    border-left: none;
    padding-top: 4px;
}

.pf-c-button.pf-m-control::after {
    display: none;
}

.pf-c-button.pf-m-control:hover::after {
    display: none;
}

footer {
    margin-top: calc(var(--spacing) * 2);
    text-align: center;
}
