* {
    box-sizing: border-box;
}

:root {
    --topbar-height-title: calc(62px + 70px);
    --topbar-height-notitle: calc(62px + 30px);
    --pf-global--FontFamily--sans-serif: 'Roboto', Arial, â€‹Helvetica, â€‹Tahoma, â€‹Verdana, â€‹ sans-serif;
    --pf-global--FontWeight--normal: 500;
}

body {
    outline: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.login-pf body {
    background-image: none;
    background-color: var(--background-color);
    color: var(--text-color); /* was white, what it's for?*/

}

body, input, select {
    font-size: 12px;
    font-family: 'Roboto', Arial, â€‹Helvetica, â€‹Tahoma, â€‹Verdana, â€‹ sans-serif;
}

input, select {
    background-color: var(--field-color);
    color: var(--text-description-color);
}

input {
    border-radius: 3px;
}

input:focus {
    outline: none;
}

img {
    display: block;
    max-width: 100%;
}

.left-side .form-group input.pf-c-form-control[aria-invalid="true"] {
    background: none;
    border: 1px solid var(--error-color);
}

.left-side .form-group input.pf-c-form-control[aria-invalid="true"] ~ .input-group-addon {
    background: none;
    border: 1px solid var(--error-color) !important;
    border-left: none !important;
}

.pf-c-form__helper-text.pf-m-error {
    color: var(--error-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px var(--field-color) inset;
    -webkit-text-fill-color: var(--text-description-color);
    background-color: var(--field-color) !important;
    color: var(--text-description-color) !important;
    border: solid 1px var(--main-color) !important;
}

.password-container input:-webkit-autofill,
.password-container input:-webkit-autofill:hover,
.password-container input:-webkit-autofill:focus {
    border-right: none !important;
}

.left-side .form-group input:-webkit-autofill ~ .input-group-addon,
.left-side .form-group input:-webkit-autofill:hover ~ .input-group-addon,
.left-side .form-group input:-webkit-autofill:focus ~ .input-group-addon,
.left-side .form-group input.pf-c-form-control[aria-invalid="true"]:-webkit-autofill ~ .input-group-addon,
.left-side .form-group input.pf-c-form-control[aria-invalid="true"]:-webkit-autofill:hover ~ .input-group-addon,
.left-side .form-group input.pf-c-form-control[aria-invalid="true"]:-webkit-autofill:focus ~ .input-group-addon {
    -webkit-box-shadow: 0 0 0 30px var(--field-color) inset;
    background-color: var(--field-color);
    border: solid 1px var(--main-color) !important;
    border-left: none !important;
}

.content {
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    min-height: 800px;
    overflow-y: auto;
}

.alert {
    font-size: .9rem;
    border-radius: 0;
    padding-left: .8rem;
    padding-right: 1.6rem;
    font-weight: bold;
}

.left-side {
    background-color: var(--background-color);
    width: calc(100% / 3);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 750px;
}

.left-side-title {
    padding-top: var(--topbar-height-title);
}


.left-side-notitle {
    padding-top: var(--topbar-height-notitle);
}

.left-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 330px;
}

.left-side .banner {
    max-height: 300px;
}

.left-side header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
}

.login-text-secondary {
    text-align: left;
}

.left-side .logo {
    margin: 0 auto;
    max-height: 150px;
    padding: 0 5px;
}

.left-side .language {
    background: none;
    border: none;
    color: var(--text-color);
    font-weight: bold;
    margin-left: auto;
    margin-right: -5px;
    padding: 10px;
    outline: none;
    text-transform: uppercase;
}

.left-side .language:hover {
    cursor: pointer;
}

.left-side .language option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--field-color);
    border: none;
    color: var(--text-description-color);
    font-weight: bold;
    outline: none;
    text-transform: uppercase;
}

.left-side .language option:focus {
    background-color: var(--field-color);
    outline: none;
    border: none;
    box-shadow: none;
}

.left-side .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}

input::placeholder {
    color: var(--field-placeholder-color);
    font-weight: lighter;
}

input:focus::placeholder {
    opacity: 0;
}


.left-side .form-group input, .left-side .form-group select {
    background-color: var(--field-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-description-color);
    height: 36px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .5px;
    font-weight: normal;
    padding: 14px 12px;
    width: 100%;
}

.text-input-label {
    padding-left: 0;
    line-height: 20px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 4px;
    padding-bottom: 0;
    letter-spacing: 0.5px;
}

.text-input-label-small {
    line-height: 15px;
    font-size: 12px;
    margin-bottom: 3px;
    letter-spacing: 0.375px;
}

.error-msg-placeholder {
    height: 32px;
}

.pf-c-form__helper-text.pf-m-error.kc-feedback-text {
    height: 32px;
}

.left-side .form-group input:focus {
    border: 1px solid var(--border-focus-color);
}

.left-side .form-group input:focus:not([type='checkbox']) ~ span:not(.error-msg-placeholder, .pf-m-error) {
    border: 1px solid var(--border-focus-color);
    border-left: none;
    color: var(--field-placeholder-color);
}

.left-side .form-group .checkbox input {
    height: unset;
    font-size: unset;
    border-radius: 0;
    width: unset;
}

.left-side .form-group .checkbox {
    color: var(--border-color);
}

.left-side .form-group .box {
    position: relative;
    display: block;
    width: 100%;
}

.left-side .form-group .line {
    position: absolute;
    margin: 0;
    height: 60%;
    width: 200px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.left-side .form-group .box-error:before,
.left-side .form-group .box-error:after {
    background: var(--error-color);
}

.btn, .btn:hover, .btn:focus, .btn:active, .btn:active:focus,
.btn:active:focus, .btn:active:hover, .btn:active.focus, .btn:active:focus,
.btn:active:hover {
    border-radius: 3px;
    height: 36px;
    color: var(--button-text-color);
    background-image: none;
    border: none;
    outline: none;
    padding: 8px;
    line-height: 20px;
    font-size: 16px;
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: background-color .2s ease-in;
    -webkit-transition: background-color .2s ease-in;
    -moz-transition: background-color .2s ease-in;
    -ms-transition: background-color .2s ease-in;
    -o-transition: background-color .2s ease-in;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus,
.btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:active.focus, .btn-primary:active:focus,
.btn-primary:active:hover {
    background-color: var(--main-color);
    color: var(--button-text-color);
    border: none;
}

.btn-secondary {
    border-radius: 0;
    background-color: var(--secondary-button-color);
    color: var(--secondary-button-text-color);
    border: 1px solid var(--secondary-button-border-color);
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus,
.btn-secondary:active:focus, .btn-secondary:active:hover, .btn-secondary:active.focus, .btn-secondary:active:focus,
.btn-secondary:active:hover {
    border: 1px solid var(--secondary-button-focus-color);
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus,
.btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:active.focus, .btn-primary:active:focus,
.btn-primary:active:hover {
    border-radius: 3px;
    background-color: var(--main-color);
}

.input-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.left-side .form-group .error {
    width: 300px;
    font-size: 10px;
    font-weight: bold;
    color: var(--error-color);
    margin-bottom: -10px;
}

.left-side footer {
    color: var(--text-secondary-color);
    text-align: left;
}


.input-group-addon {
    line-height: 20px;
    font-size: 16px;
    background-color: var(--field-color);
    border: 1px solid var(--border-color);
    border-left: none;
    color: var(--text-description-color);
    border-radius: 3px;
    margin-left: -2px;
    padding: 8px 0;
}

.left-side footer p {
    margin: 0;
}

.left-side footer p + p {
    margin-top: 20px;
}


.input-show {
    display: flex;
}

.input-show-left {
    border-right: none !important;
    border-radius: 0;
}

.input-show-right {
    border-left: none !important;
    border-radius: 0;
}

.fa.fa-eye-slash, .fa.fa-eye {
    display: flex;
    justify-content: center;
}

/*todo: all the password colors I'm sorta unsure of, when are those applied? */
.password-shown {
    color: var(--field-placeholder-color);
    line-height: 20px;
    height: 36px;
    padding: 0 8px;
}

.password-show {
    width: 35px;
    line-height: 20px;
    height: 36px;
    border-left: none;
    background-color: var(--field-color);
    background-image: none;
    color: var(--field-placeholder-color);
    margin-left: -2px;
    border-radius: 0 3px 3px 0;
}

.password-show.active.focus, .password-show.active:focus, .password-show.active:hover, .password-show:active.focus,
.password-show:active:focus, .password-show:active:hover, .password-show:hover, .password-show:focus, .password-show:active {
    background-color: var(--field-color);
    border: 1px solid var(--border-color);
    border-left: none;
    background-image: none;
    color: var(--field-placeholder-color);
    outline: none;
    width: 35px;
    margin-left: -2px;
    border-radius: 0 3px 3px 0;
}

.password-shown:hover, .password-shown:focus, .password-shown:active, .password-shown:active:focus {
    color: var(--field-placeholder-color);
}

.password-hidden {
    background-color: var(--field-color);
}

.right-side {
    display: flex;
    align-items: center;
    width: calc(100% / 3 * 2);
    height: 100%;
    position: relative;
    background-color: var(--background-color);
}

.login-image-container {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.pad-top {
    padding-top: 20px;
}

.pad-bottom {
    padding-bottom: 20px;
}

.terms-container-wrapper {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.90);
}

.terms-container-wrapper-content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 60%;
    max-height: 80%;
    top: 10%;
    margin: 0 auto;
    background-color: var(--tos-window-color);
    color: var(--tos-text-color);
    border-radius: 3px;
    overflow: hidden;
}

.tos-header {
    padding: 30px 0;
    margin: 0;
    text-align: center;
    font-size: 20px;
}

.terms-content {
    margin: 0 20px;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
    background-color: var(--tos-background-color);
    overflow: auto;
    color: var(--tos-text-color);
}

.terms-content a {
    color: var(--tos-link-color);
}

.left-side .form-group.tos-buttons-wrapper {
    display: flex;
    flex-direction: row;
    margin: 20px;
}

.tos-buttons-wrapper #kc-accept, .tos-buttons-wrapper #kc-decline {
    width: 100%;
    height: unset;
    padding: 18px;
}

.tos-buttons-wrapper #kc-decline {
    color: var(--tos-text-color);
    background-color: transparent;
    box-shadow: none;
}

#kc-accept, #kc-decline {
    display: inline-block;
    width: 48%;
    margin-top: 0;
}

.page-heading {
    margin-bottom: 40px;
    margin-top: 0;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
}

.page-heading > span {
    margin-right: 2rem;
}

.kc-social {
    width: 100%;
}

label input {
    opacity: 0; /* Hide the default checkbox */
}

/* Style the artificial checkbox */
label span {
    height: 15px;
    width: 15px;
    border: 1px solid var(--border-color);
    display: inline-block;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}

.checkbox input[type=checkbox] {
    margin-left: 0;
}

[type=checkbox]:checked + span {
    background-color: var(--main-color);
    background-clip: content-box;
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    display: inline-block;
    color: var(--field-color);
    line-height: 15px;
    font-weight: bolder;
}

.checkbox label {
    padding-left: unset;
}

.checkbox {
    height: 20px;
    text-align: center;
}

.settings-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.forgot-password {
    align-self: center;
    text-decoration: underline;
    color: var(--text-color);
}

.text, a.text, .text a, .text-secondary, a.text-secondary, .text-secondary a {
    color: var(--text-description-color);
    line-height: 16px;
    font-size: 14px;
    letter-spacing: 0.25px;
}

.text.text-multiline, .text-secondary.text-multiline {
    line-height: 20px;
}

.main-text {
    margin-bottom: 40px;
}

.main-text p {
    margin-bottom: 20px;
}

.main-text p:last-child {
    margin-bottom: 0px;
}

.text-secondary {
    color: var(--text-secondary-color);
}

a.text-secondary, .text-secondary a {
    color: var(--text-link-color);
    text-decoration: underline;
}

a.text-secondary:hover, a.text-secondary:focus, a.text-secondary:active {
    color: var(--text-link-color);
    text-decoration: underline;
    outline: none;
}

.text-secondary a:hover, .text-secondary a:focus, .text-secondary a:active {
    color: var(--text-link-color);
    text-decoration: underline;
    border: none;
    outline: none;
}


.text-secondary-multiline a, .text-secondary-multiline a:hover, .text-secondary-multiline a:focus, .text-secondary-multiline a:active {
    text-decoration: underline;
    color: var(--text-description-color)
}


.or-p {
    color: var(--text-color);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
}

.data-checkbox {
    width: fit-content;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
}

.do-register a, .do-register a:focus,
.do-register a:hover, .do-register a:active,
.back-to-login a, .back-to-login a:focus,
.back-to-login a:hover, .back-to-login a:active,
.terms-of-service a, .terms-of-service a:focus,
.terms-of-service a:hover, .terms-of-service a:active {
    margin-left: 6px;
    color: var(--text-link-color);
    border: none;
    outline: none;
}

p a {
    color: var(--main-color);
}

p a:hover {
    color: var(--text-color);
}

p a:active {
    color: var(--text-color);
}

.remember-me {
    display: inline-block;
    vertical-align: middle;
    border: none;
}

@media (max-width: 1279px) {
    .right-side {
        display: none;
    }

    .left-side {
        width: 100%;
    }
}

.logo-container {
    position: absolute;
    top: 62px;
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-image {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
}

.login-title {
    /* Subtitle 1 */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */

    display: flex;
    align-items: center;
    letter-spacing: 0.0015em;
    width: 100%;
    justify-content: center;

    /* text white/high emphasis */

    color: var(--text-description-color);

}

.provider-button {
    background-color: var(--secondary-button-color);
    color: var(--secondary-button-text-color);
    border: 1px solid var(--secondary-button-border-color);
}

.provider-button:not(:last-of-type) {
    margin-bottom: var(--pf-global--spacer--sm);
}

.log-in-with {
    margin-right: 2px;
}

.message-header {
    font-family: Roboto;
    font-size: 30px;
}

.login-instruction {
    margin-top: 40px;
    font-family: Roboto;
    font-size: 14px;
    color: rgba(255, 255, 255, 87%);
}

.back-to-login-btn {
    width: 100%;
    border: solid;
    border-width: thin;
    border-color: rgba(255, 255, 255, 87%);
    background-color: transparent;
    font-family: Roboto;
    font-size: 16px;
    color: var(--text-color);
    margin-top: 48px;
}

.provider-button a {
    color: var(--secondary-button-text-color);
    text-decoration: none;
}

.provider-button:hover, .provider-button a:hover {
    color: var(--secondary-button-text-color);
    text-decoration: none;
    border: 1px solid var(--secondary-button-focus-color, transparent);
}

.terms-container {
    margin-left: 10%;
    width: 50%;
}

.terms-header {
    font-family: 'Roboto', serif;
    font-size: 40px;
    line-height: 53px;
    padding-bottom: 80px;
}

.terms-cntnt {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
}

.terms-breadcrumbs {
    font-family: 'Roboto', serif;
    font-size: 14px;
    letter-spacing: 0.25px;
    line-height: 20px;
}

.terms-heading {
    margin-top: 30px;
    margin-bottom: 80px;
}

.g-recaptcha {
    margin-top: 24px;
}

.feedback-aligner {
    position: fixed;
    top: 15px;
    text-align: center;
    width: 100%;
    height: 0;
    z-index: 100;
}

.feedback-aligner .alert {
    border-radius: 0;
    border-width: 1px;
    display: inline-block;
    position: relative;
}

.notification-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    bottom: 40px;
    z-index: 100;
}

.pf-c-alert.pf-m-inline::before {
    background-color: transparent;
}

.pf-c-alert.pf-m-inline {
    --pf-c-alert--m-inline--BorderColor: var(--pf-global--BorderColor--300);
    --pf-global--LineHeight--md: 24px;
    --pf-c-alert--m-inline--BorderStyle: solid;
    --pf-c-alert--m-inline--BorderTopWidth: 2px;
    --pf-c-alert--m-inline--BorderRightWidth: 0;
    --pf-c-alert--m-inline--BorderBottomWidth: 0;
    --pf-c-alert--m-inline--BorderLeftWidth: 0;
    font-weight: 500;
    --pf-c-alert--BoxShadow: var(--pf-global--BoxShadow--lg);
    border-radius: 4px;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.12)) drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.14));
}

.pf-c-alert.pf-m-success {
    --pf-c-alert--m-inline--BorderColor: var(--success-alert-color);
    --pf-c-alert__title--Color: var(--success-alert-color);
}

.pf-c-alert.pf-m-warning {
    --pf-c-alert--m-inline--BorderColor: var(--pf-global--warning-color--100);
    --pf-c-alert__title--Color: var(--pf-global--warning-color--100);
}

.pf-c-alert.pf-m-danger {
    --pf-c-alert--m-inline--BorderColor: var(--error-alert-color);
    --pf-c-alert__title--Color: var(--error-alert-color);
}

.pf-c-alert.pf-m-info.pf-m-inline {
    --pf-c-alert--m-inline--BorderColor: var(--pf-global--info-color--100);
    --pf-c-alert__title--Color: var(--pf-global--info-color--100);
}

.pf-c-alert.pf-m-success.pf-m-inline {
    --pf-c-alert__icon--Color: var(--success-alert-color);
}

.pf-c-alert.pf-m-warning.pf-m-inline {
    --pf-c-alert__icon--Color: var(--pf-global--warning-color--100);
}

.pf-c-alert.pf-m-danger.pf-m-inline {
    --pf-c-alert__icon--Color: var(--error-alert-color);
}

.pf-c-alert.pf-m-info {
    --pf-c-alert__icon--Color: var(--pf-global--info-color--100);
}

.pf-c-alert__title {
    font-size: var(--pf-global--FontSize--sm);
    text-align: center;
    vertical-align: middle;
}

.pf-c-alert.pf-m-inline .pf-c-alert__icon {
    padding: var(--pf-c-alert__icon--Padding);
    --pf-c-alert--m-inline__icon--FontSize: 24px;
}

.instruction {
    line-height: 1.8rem;
    font-size: 1rem;
}

.instruction > ul > li:before {
    content: '-';
    padding-right: 0.2rem;
}

.instruction > ul > li {
    list-style: none;
    font-size: 1.2rem;
    line-height: 2.0rem;
}

.info-button {
    margin-top: 4rem;
}

/* Social */
#kc-social-providers {
    margin-top: 16px;
}

.kc-social-links {
    margin-top: 20px;
}

.kc-social-provider-logo {
    font-size: 23px;
    width: 30px;
    height: 25px;
    float: left;
}

.kc-social-provider-name {
    position: relative;
    vertical-align: middle;
}

.kc-social-icon-text {
    left: -15px;
}

.kc-social-grid {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    grid-column-end: span 6;
    --pf-l-grid__item--GridColumnEnd: span 6;
}

.kc-social-grid .kc-social-icon-text {
    left: -10px;
}

.kc-login-tooltip {
    position: relative;
    display: inline-block;
}

.kc-social-section {
    text-align: center;
}

.kc-social-section hr {
    margin-bottom: 10px
}

.google-logo-image {
    float: left;
    width: 20px;
    height: 20px;
}

.google-login-text {
    size: 16px;
    color: rgba(0, 0, 0, 54%);
    line-height: 20px;
    font-family: Roboto, sans-serif;
}

.google-login-button {
    background: white;
    display: inline-block;
    text-align: center;
}

.pf-l-grid > .google-login-button {
    grid-column-end: span 12;
}

.kc-login-tooltip .kc-tooltip-text {
    top: -3px;
    left: 160%;
    background-color: black;
    visibility: hidden;
    color: #fff;

    min-width: 130px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    padding: 5px;

    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Show tooltip */
.kc-login-tooltip:hover .kc-tooltip-text {
    visibility: visible;
    opacity: 0.7;
}

/* Arrow for tooltip */
.kc-login-tooltip .kc-tooltip-text::after {
    content: " ";
    position: absolute;
    top: 15px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.login-pf-signup:not(.forgot-password) {
    margin-top: 36px;
}

@media (min-width: 768px) {
    #kc-container-wrapper {
        position: absolute;
        width: 100%;
    }

    .login-pf .container {
        padding-right: 80px;
    }

    #kc-locale {
        position: relative;
        text-align: right;
        z-index: 9999;
    }
}

@media (max-width: 767px) {

    .login-pf body {
        background: white;
    }

    #kc-header {
        padding-left: 15px;
        padding-right: 15px;
        float: none;
        text-align: left;
    }

    /*#kc-header-wrapper {*/
    /*    font-size: 16px;*/
    /*    font-weight: bold;*/
    /*    padding: 20px 60px 0 0;*/
    /*    color: #72767b;*/
    /*    letter-spacing: 0;*/
    /*}*/
    div.kc-logo-text {
        margin: 0;
        width: 150px;
        height: 32px;
        background-size: 100%;
    }

    #kc-form {
        float: none;
    }

    .login-pf-signup {
        margin-top: 36px;
    }

    #kc-info-wrapper {
        background-color: transparent;
    }

    .login-pf .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #kc-locale {
        position: absolute;
        width: 200px;
        top: 20px;
        right: 20px;
        text-align: right;
        z-index: 9999;
    }

    #kc-logo-wrapper {
        background-size: 100px 21px;
        height: 21px;
        width: 100px;
        margin: 20px 0 0 20px;
    }

}

@media (min-height: 646px) {
    #kc-container-wrapper {
        bottom: 12%;
    }
}

@media (max-height: 645px) {
    #kc-container-wrapper {
        padding-top: 50px;
        top: 20%;
    }
}

.card-pf form.form-actions .btn {
    float: right;
    margin-left: 10px;
}

#kc-form-buttons {
    margin-top: 24px;
}

.login-pf-page .login-pf-brand {
    margin-top: 20px;
    max-width: 360px;
    width: 40%;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-12 {
    padding: 0;
}

.forgot-password-group {
    margin-bottom: 20px;
}

.submit-button {
    margin-bottom: 24px;
}

.hidden {
    display: none;
}

.info-hover-button {
    position: relative;

    line-height: 24px;
    font-size: 20px;
}

.info-hover-button:hover .tooltip-container {
    display: flex;
}

.tooltip-container {
    display: none;

    left: 20px;
    top: 0;
    bottom: 0;
    width: 250px;

    position: absolute;
    z-index: 1;

    flex-direction: column;
    justify-content: center;
}

.info-tooltip {
    background-color: rgba(97, 97, 97, 0.9);

    position: relative;
    display: flex;

    font-family: 'Roboto', serif;
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;

    flex-direction: column;
    align-items: baseline;
}

.info-tooltip p {
    margin: 0;
}

.label-wrapper {
    display: flex;
    align-items: center;
}