.login-pf body {
    background-attachment: fixed;
    background-color: #fafafa;
    background-image: url("../img/background.jpg?v2");
    background-size: cover;
    z-index: -1;
    font-size: 0.88rem;
}

#button-container {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 10px 0;
    flex-direction: row-reverse;
}

.button-right {
    margin: 15px 15px 10px 0;
    float: right;
    width: 250px;
}

.buttons-right {
    margin: 15px 15px 10px 0;
    float: right;
    width: 400px;
    display: flex;
}

h1#kc-page-title {

}

.pf-c-button.pf-m-primary {
    background-color: #188a42;
    border-radius: 0.275rem;
    padding: 10px;
    margin: 5px;
    width: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.pf-c-button.pf-m-primary:hover {
    background-color: #136c34;
}

.cancel-button.pf-c-button.pf-m-primary {
    background-color: #44403c;
}
.cancel-button.pf-c-button.pf-m-primary:hover {
    background-color: #292524;
}

#kc-header-wrapper {
    padding: 62px 10px 0;
}

div.kc-logo-text {
    background-image: url(../img/logo-800.png);
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    background-size: 100%;
    margin: 0 auto;
}

a {
    color: #188a42;
}

#try-another-way {
    font-size: 0.9em;
}

#otp-code-label {
    padding-bottom: 5px;
}

.card-pf {
    border-radius: 0.375rem;
    border-color: #188a42;
    max-width: 544px;
}

.card-pf-terms {
    max-width: 1020px;
}

.column {
    float: left;
    width: 33.33%;
    padding: 5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

#otp-sent-to {
    padding: 1.2rem;
    font-size: 0.75rem;
}

.select-auth-box-headline {
    color: #0e4f2f;
}

h1#kc-page-title {
    font-weight: 600;
}

.select-auth-box-icon {
    margin-left: 1rem;
}

.pf-c-button.pf-m-primary:disabled {
    background-color: #818b8a;
}

#password-policy {
    font-size: small;
    display: block;
    padding-top: 10px;
}

#kc-totp-secret-qr-code {
    max-width: 250px;
    max-height: 250px;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #188941;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

p.instruction {
    margin: 15px 0;
}