/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
   This clashes with the "keycloak-bg.png' background defined on the body below.
   Therefore the Patternfly background must be set to none. */
.login-pf {
    background: none;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    color: #535353;
    padding: 0 16px;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

* {
    box-sizing: border-box;
}

.login-pf body {
    background: url("../img/bg-image.jpg") no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-pf body.consent-page {
    background: #FDFDFD;
}

.login-pf .consent-page .card-pf {
    background: #FDFDFD;
    margin: 0;
    padding: 0;
    border: none;
    height: 100%;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-shadow: none;
}

.login-pf .consent-page #kc-content {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.login-pf .consent-page #kc-content-wrapper {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main {
    flex: 1;
}

.not-visible {
    visibility: hidden;
}

.w100 {
    width: 100%;
}

.form-horizontal .form-group {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

/*IE compatibility*/
.pf-c-form-control {
    font-size: 14px !important;
    line-height: 17px !important;
    font-size: var(--pf-global--FontSize--sm);
    border-width: 1px;
    border-width: var(--pf-global--BorderWidth--sm);;
    border-color: #EDEDED #EDEDED #8A8D90 #EDEDED;
    border-color: var(--pf-global--BorderColor--300) var(--pf-global--BorderColor--300) var(--pf-global--BorderColor--200) var(--pf-global--BorderColor--300);
    background-color: #FFFFFF;
    background-color: var(--pf-global--BackgroundColor--100);
    height: 36px;
    height: calc(var(--pf-c-form-control--FontSize) * var(--pf-c-form-control--LineHeight) + var(--pf-c-form-control--BorderWidth) * 2 + var(--pf-c-form-control--PaddingTop) + var(--pf-c-form-control--PaddingBottom));
    padding: 5px 0.5rem;
    padding: var(--pf-c-form-control--PaddingTop) var(--pf-c-form-control--PaddingRight) var(--pf-c-form-control--PaddingBottom) var(--pf-c-form-control--PaddingLeft);
    border: none;
    border-bottom: 1px solid #D9D9D9;
    height: 22px !important;
    color: rgba(83, 83, 83, 0.7);
    outline: none;
}

textarea.pf-c-form-control {
	height: auto;
}

.pf-c-form-control:hover, .pf-c-form-control:focus {
    border-bottom-color: #F18500;
    border-bottom-width: 1px;
}

.pf-c-form-control[aria-invalid="true"] {
    border-bottom-color: #F12727;
    border-bottom-width: 1px;
    background-position-y: 0px;
}

.pf-c-check__label, .pf-c-radio__label {
	font-size: 14px;
	font-size: var(--pf-global--FontSize--sm);
}

.pf-c-alert.pf-m-inline {
    margin-bottom: 1.5rem; /* default - IE compatibility */
    /* margin-bottom: var(--pf-global--spacer--sm); */
    padding: 8px;
    border-radius: 20px;
    border: solid #ededed;
    border: solid var(--pf-global--BorderColor--300);
    border-width: 0;
    display: -ms-flexbox;
    display: grid;
    -ms-grid-columns: max-content 1fr max-content;
    grid-template-columns:max-content 1fr max-content;
    grid-template-columns: var(--pf-c-alert--grid-template-columns);
    grid-template-rows: 1fr auto;
    grid-template-rows: var(--pf-c-alert--grid-template-rows);
}

.pf-c-alert.pf-m-inline::before {
    position: absolute;
    top: -1px;
    top: var(--pf-c-alert--m-inline--before--Top);
    bottom: -1px;
    bottom: var(--pf-c-alert--m-inline--before--Bottom);
    left: 0;
    width: 3px;
    width: var(--pf-c-alert--m-inline--before--Width);
    content: none;
    background-color: #FFFFFF;
    background-color: var(--pf-global--BackgroundColor--100);
}

.pf-c-alert.pf-m-inline.pf-m-success::before {
    background-color: #4CA6301A;
}

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

.pf-c-alert.pf-m-inline.pf-m-warning::before {
    background-color: #F0AB00;
    background-color: var(--pf-global--warning-color--100);
}

.pf-c-alert.pf-m-inline .pf-c-alert__icon {
    padding: 1rem 0.5rem 1rem 1rem;
    padding: var(--pf-c-alert--m-inline__icon--PaddingTop) var(--pf-c-alert--m-inline__icon--PaddingRight) var(--pf-c-alert--m-inline__icon--PaddingBottom) var(--pf-c-alert--m-inline__icon--PaddingLeft);
    font-size: 16px;
    font-size: var(--pf-c-alert--m-inline__icon--FontSize);
}

.pf-c-alert.pf-m-success .pf-c-alert__icon {
    color: #4CA630;
}

.pf-c-alert.pf-m-success .pf-c-alert__title {
    color: #4CA630;
}

.pf-c-alert.pf-m-danger .pf-c-alert__icon {
    color: #F12727;
}

.pf-c-alert.pf-m-danger .pf-c-alert__title {
    padding: 0;
    color: #F12727;
}

.pf-c-alert.pf-m-warning .pf-c-alert__icon {
    color: #f1d51d;
    /* color: var(--pf-global--warning-color--100); */
}

.pf-c-alert.pf-m-warning .pf-c-alert__title {
    color: #896500;
}

.pf-c-alert__title {
    font-size: 14px; /* default - IE compatibility */
    font-size: var(--pf-global--FontSize--sm);
    padding: 0;
    /* padding: var(--pf-c-alert__title--PaddingTop) var(--pf-c-alert__title--PaddingRight) var(--pf-c-alert__title--PaddingBottom) var(--pf-c-alert__title--PaddingLeft); */
}

.pf-c-button{
    padding:0.375rem 1rem;
    padding: var(--pf-global--spacer--form-element) var(--pf-global--spacer--md);
}

/* default - IE compatibility */
.pf-m-primary {
    color: #FFFFFF;
    background-color: #0066CC;
    background-color: var(--pf-global--primary-color--100);
}

/* default - IE compatibility */
.pf-m-primary:hover {
    background-color: #004080;
    background-color: var(--pf-global--primary-color--200);
}

/* default - IE compatibility */
.pf-c-button.pf-m-control {
    border: solid 1px;
    border: solid var(--pf-global--BorderWidth--sm);
    border-color: rgba(230, 230, 230, 0.5);
}
/*End of IE compatibility*/
#kc-page-title {
    margin: 24px 0 0 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    max-width: 280px;
}

#kc-locale ul {
    background-color: #FFF;
    background-color: var(--pf-global--BackgroundColor--100);
    display: none;
    top: 25px;
    right: -2px;
    min-width: fit-content;
    padding: 0;
}

#kc-locale-dropdown{
    display: inline-block;
}

#kc-locale-dropdown:hover ul {
    display:block;
}

/* IE compatibility */
#kc-locale-dropdown a {
    color: #535353;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

#kc-locale-dropdown a:hover {
    text-decoration: none;
}

/* IE compatibility */
a#kc-current-locale-link::after {
    content: '';
    margin-left: 4px;
    margin-left: var(--pf-global--spacer--xs);
    width: 10px;
    height: 10px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/dropdown-icon.svg');
}

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

.login-pf a:hover {
    color: #E84c05 !important;
    outline: none !important;
}

#kc-logo {
    width: 100%;
}

div.kc-logo-text img {
    height: 56px;
    width: 141px;
    display: block;
    margin: 0 auto;
}

div.kc-logo-text span {
    display: none;
}

#kc-header {
    color: #ededed;
    overflow: visible;
    white-space: nowrap;
}

#kc-header-wrapper {
    font-size: 29px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2em;
    padding: 64px 10px 40px;
    white-space: normal;
}

#kc-content {
    max-width: 280px;
    width: 100%;
}

#kc-attempted-username {
    font-size: 20px;
    font-family: inherit;
    font-weight: normal;
    padding-right: 10px;
}

#kc-username {
    text-align: center;
    /* margin-bottom:-10px; */
}

#kc-webauthn-settings-form {
    padding-top: 8px;
}

#kc-form-webauthn .select-auth-box-parent {
    pointer-events: none;
}

#kc-form-webauthn .select-auth-box-desc {
    color: var(--pf-global--palette--black-600);
}

#kc-form-webauthn .select-auth-box-headline {
    color: var(--pf-global--Color--300);
}

#kc-form-webauthn .select-auth-box-icon {
    flex: 0 0 3em;
}

#kc-form-webauthn .select-auth-box-icon-properties {
    margin-top: 10px;
    font-size: 1.8em;
}

#kc-form-webauthn .select-auth-box-icon-properties.unknown-transport-class {
    margin-top: 3px;
}

#kc-form-webauthn .pf-l-stack__item {
    margin: -1px 0;
}

#kc-content-wrapper {
    margin-top: 24px;
}

#kc-form-wrapper {
    margin-top: 10px;
}

#kc-info {
    margin: 0;
}

#kc-info-wrapper {
    background-color: transparent;
    margin: 0 -54px;
}

#kc-form-options span {
    display: block;
}

#kc-form-options .checkbox {
    margin-top: 0;
    margin-bottom: 0;
    color: rgba(83, 83, 83, 0.7);
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
}

#rememberMe, #logout-sessions {
    margin: 1px 0 0 -20px;
    accent-color: #F18500;
    cursor: pointer;
}

#rememberMeLabel, #logout-sessions-label {
    min-height: initial;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
}

#kc-form-login #kc-form-options {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

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

#kc-terms-text {
    margin-bottom: 20px;
}

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

.kc-logo-text {
    display: flex;
    justify-content: center;
}

/* TOTP */

.subtitle {
    text-align: right;
    margin-top: 30px;
    color: #909090;
}

.required {
    color: #F12727;; /* default - IE compatibility */
}

.pf-c-form__helper-text.pf-m-error {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    padding-top: 4px;
    padding-bottom: 16px;
    display: block;
}

ol#kc-totp-settings {
    margin: 0;
    padding-left: 20px;
}

ul#kc-totp-supported-apps {
    margin-bottom: 10px;
}

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

#kc-totp-secret-key {
    background-color: #fff;
    color: #333333;
    font-size: 16px;
    padding: 10px 0;
}

/* OAuth */

#kc-oauth h3 {
    margin-top: 0;
}

#kc-oauth ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#kc-oauth ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 10px 0;
}

#kc-oauth ul li:first-of-type {
    border-top: 0;
}

#kc-oauth .kc-role {
    display: inline-block;
    width: 50%;
}

/* Code */
#kc-code textarea {
    width: 100%;
    height: 8em;
}

/* Social */
.kc-social-links {
    margin-top: 0;
}

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

.kc-social-gray {
    color: #737679; /* default - IE compatibility */
    color: var(--pf-global--Color--200);
}

.kc-social-item {
    margin-bottom: 0.5rem; /* default - IE compatibility */
    margin-bottom: var(--pf-global--spacer--sm);
    font-size: 15px;
    text-align: center;
}

.kc-social-provider-name {
    position: relative;
    top: 3px;
}

.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
}

.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;
}

@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 (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: 16px;
}

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

/* Internet Explorer 11 compatibility workaround for select-authenticator screen */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .select-auth-box-parent {
        border-top: 1px solid #f0f0f0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        cursor: pointer;
    }

    .select-auth-box-headline {
        font-size: 16px;
        color: #06c;
        font-weight: bold;
    }

    .select-auth-box-desc {
        font-size: 14px;
    }

    .pf-l-stack {
        flex-basis: 100%;
    }
}
/* End of IE11 workaround for select-authenticator screen */

.select-auth-box-arrow{
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.select-auth-box-icon{
    display: flex;
    flex: 0 0 2em;
    justify-content: center;
    margin-right: 1rem;
    margin-left: 3rem;
}

.select-auth-box-parent{
    border-top: 1px solid var(--pf-global--palette--black-200);
    padding-top: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
}

.select-auth-box-parent:hover{
    background-color: #f7f8f8;
}

.select-auth-container {
    padding-bottom: 0px !important;
}

.select-auth-box-headline {
    font-size: var(--pf-global--FontSize--md);
    color: var(--pf-global--primary-color--100);
    font-weight: bold;
}

.select-auth-box-desc {
    font-size: var(--pf-global--FontSize--sm);
}

.select-auth-box-paragraph {
    text-align: center;
    font-size: var(--pf-global--FontSize--md);
    margin-bottom: 5px;
}

.card-pf {
    margin: 0 auto;
    padding: 0 54px;
    background: #FFFFFF;
    border: 1px solid rgba(83, 83, 83, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    box-sizing: border-box;
    width: fit-content;
    max-width: 390px;
    width: 100%;
}

/*phone*/
@media (max-width: 767px) {
    .login-pf-page .card-pf {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        border-top: 0;
        box-shadow: 0 0;
    }

    .kc-social-grid {
        grid-column-end: 12;
        --pf-l-grid__item--GridColumnEnd: span 12;
    }

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

.login-pf-page .login-pf-signup {
    font-size: 15px;
    color: #72767b;
}
#kc-content-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

.login-pf-page.login-pf-page-accounts {
    margin-left: auto;
    margin-right: auto;
}

.login-pf-page .btn-primary {
    margin-top: 0;
}

.login-pf-page .list-view-pf .list-group-item {
    border-bottom: 1px solid #ededed;
}

.login-pf-page .list-view-pf-description {
    width: 100%;
}

#kc-form-login div.form-group:last-of-type,
#kc-register-form div.form-group:last-of-type,
#kc-update-profile-form div.form-group:last-of-type {
    margin-bottom: 0px;
}

.no-bottom-margin {
    margin-bottom: 0;
}

#kc-back {
    margin-top: 5px;
}

.input-icon {
    position: relative;
    padding-left: 24px;
    padding-bottom: 4px;
}

.input-username {
    background-image: url("../img/user-icon.svg") !important;
    background-repeat: no-repeat !important;
    background-position: 2px 2px !important;
}

.input-password {
    background-image: url("../img/password-icon.svg") !important;
    background-repeat: no-repeat !important;
    background-position: 2px 3px !important;
    padding-right: 22px;
}

.input-wrapper {
    position: relative;
    height: 22px;
}

.input-wrapper  label {
    color: #535353b3;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    left: 24px;
    bottom: 4px;
    transition: all 100ms ease-in-out;
    margin: 0;
}

.input-wrapper  input {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 0px;
    border-right: none;
    border-left: none;
    border-top: 0;
    /* border-bottom: 1px solid var(--color-default-200); */
    /* padding: 0 0 var(--gap-100); */
    /* font-family: var(--font-family-default); */
    /* font-size: var(--font-size-400); */
    /* font-size: var(--font-size-300); */
}

.input-wrapper  input:focus {
    outline: none;
}

.input-wrapper  input:focus ~ label,
.input-wrapper  input:-webkit-autofill ~ label,
.input-wrapper  input:not(:placeholder-shown) ~ label {
    transform: translate(-8%, -125%);
    scale: 0.85;
    left: 0;
}

#kc-form-login .input-wrapper {
    margin-top: 24px;
}

#kc-form-login .input-wrapper:first-of-type {
    margin-top: 0;
}

.text-left {
    text-align: end;
}

.form-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: rgba(83, 83, 83, 0.7);
    display: block;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.form-button {
    height: 36px;
    background-color: #F18500 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    color: #FFFFFF !important;
    border-radius: 8px;
}

.form-button:hover, .form-button:focus {
    background-color: #E84c05 !important;
    outline: none !important;
}

.form-button-link {
    line-height: 24px !important;
}

.form-button.form-button-link:hover {
    color: #ffffff !important;
}

.socials-divider {
    margin: 4px 0;
}

.google-button {
    height: 40px;
    border: 1px solid rgba(83, 83, 83, 0.7);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(83, 83, 83, 0.7);
}

.google-button:hover {
    background-color: #f7f8f8;
}

.login-footer {
    margin-top: 24px;
}

.login-page {
    display: grid;
    grid-template-rows: min-content min-content;
}

.login-page footer {
    align-self: end;
}

#kc-registration-container {
    height: 50px;
    border-top: 1px solid #D9D9D9;
}

#kc-registration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 54px;
}

.footer-link {
    font-size: 14px;
    color: #F18500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

footer .footer-link.footer-link-bold {
    font-weight: 700;
}

footer .footer-link.footer-link-underline {
    text-decoration: underline;
}

footer .footer-link.footer-link-underline:hover {
    color: #ffffff !important;
}

.footer-link-bold:hover {
    color: #E84c05;
}

.alert-error {
    padding: 4px 12px !important;
    background: rgba(241, 39, 39, 0.05);
    border-radius: 20px;
    border: none !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #F12727;
    width: fit-content;
    margin: 0 auto 16px auto;
    margin-bottom: 24px !important;
}

.alert-warning {
    padding: 4px 12px !important;
    background: rgba(251, 230, 0, 0.25);
    border-radius: 20px;
    border: none !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #f1d51d;
    width: fit-content;
    margin: 0 auto 16px auto;
    margin-bottom: 24px !important;
}

footer {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer .footer-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #fff;
    text-decoration: none;
}

.register-names {
    display: flex;
    gap: 24px;
}

.registration-input {
    padding-left: 0;
    padding-right: 0;
}

.registration-link {
    width: fit-content;
    margin: 16px auto 0;
}

.registration-list {
    font-size: 10px;
    line-height: 12px;
    margin-top: 24px;
}

.registration-list-header {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.registration-list-item {
    font-size: 10px;
    line-height: 14px;
}

.reset-password-buttons {
    margin-top: 0 !important;
}

.link-button {
    text-align: center;
    color: #F18500;
    margin: 16px auto 0 auto;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    display: block;
    width: fit-content;
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
    text-decoration: underline;
}

.thrusted-device-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    color: #F18500;
    border: 1px solid #F18500;
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    background: transparent;
}

.link-button:hover, .thrusted-device-button:hover {
    color: #E84c05 !important;
    border-color: #E84c05;
}

.reset-password-footer {
    margin-top: 24px;
}

.mfa-login-footer {
    margin-top: 24px;
}

.new-password-buttons {
    margin-top: 0 !important;
}

.new-password-footer {
    margin-top: 24px;
}

.password-input-wrapper {
    position: relative;
}

.password-input-icon {
    position: absolute;
    right: 2px;
    top: 0;
}

.password-hide-icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 2px;
    top: 0px;
    background-image: url('../img/eye-invisible.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.password-hide-icon-visible {
    background-image: url('../img/eye-visible.svg');
}

.password-input-icon:hover + .password-rules-wrapper {
    display: block;
}

.password-rules-wrapper {
    display: none;
    position: absolute;
    bottom: 50px;
    right: -295px;
    background: #FFFFFF;
    border: 1px solid rgba(83, 83, 83, 0.05);
    border-radius: 8px;
    width: 312px;
    padding: 12px 16px;
    z-index: 100;
}

.password-rules-header {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 10px;
    color: #535353;
}

.password-rules-item {
    font-size: 14px;
    line-height: 17px;
    color: rgba(83, 83, 83, 0.7);
    font-weight: 500;
    padding-left: 5px;
}

.code-send-message {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 24px 0 0 0;
}

.code-send-email {
    font-weight: 600;
}

.info-message {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.mfa-input-wrapper, .sms-input-wrapper {
    margin: 16px 0;
}

.mfa-input-numbers, .sms-input-numbers {
    display: flex;
    justify-content: space-between;
}

.mfa-input-numbers-short {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mfa-input-number, .sms-input-number {
    width: 28px;
    height: 32px;
    outline: none;
    border: 1px solid rgba(83, 83, 83, 0.2);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    caret-color: transparent;
    padding: 0;
    margin: 0;
}

.mfa-input-number:focus, .sms-input-number:focus {
    border-color: #F18500;
}

.code-send-help {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
}

.mfa-link {
    display: inline;
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.mfa-link:hover {
    color: #F18500;
}

.consent-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
}

.consent-main-header {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin: 13px 0 0 0;
    text-align: center;
}

.consent-main-section {
    max-width: 646px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid rgba(83, 83, 83, 0.2);
    padding: 24px;
    margin-top: 40px;
}

.consent-main-section-header {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
}

.consent-main-section-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin: 16px 0 0 0;
    display: inline-table;
}

.consent-main-section-link {
    color: #535353;
    text-decoration: underline;
}

.consent-main-section-link:hover {
    color: #F18500;
}

.consent-main-section-buttons {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.consent-main-section-button {
    background: #FFFFFF;
    border: 1px solid #F18500;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #F18500;
}

.consent-main-section-button:hover {
    background: #FFFFFF;
    border: 1px solid #E84c05;
    color: #E84c05;
}

.consent-footer-wrapper {
    display: flex;
    padding: 40px 120px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
}

.consent-footer-wrapper > span {
    line-height: 15px;
}

.consent-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 8px;
    align-items: center;
    justify-content: center;
}

.consent-footer-links-link {
    color: #535353;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
}

.consent-footer-links-link:hover {
    color: #F18500;
}

.actions-page-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.actions-page-button {
    margin: 24px 0;
}

.expired-page-buttons {
    margin: 32px 0 16px 0;
}

.hide-locales {
    display: none;
}

@media (max-width: 1090px) {
    .consent-footer-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    #kc-header-wrapper {
        padding: 32px 10px 25px;
    }

    .card-pf {
        padding: 0 40px;
        max-width: 362px;
    }

    #kc-registration {
        padding: 0 40px;
    }

    #kc-info-wrapper {
        margin: 0 -40px;
    }

    .consent-top-section {
        padding: 24px 0 0 0;
    }

    .consent-footer-wrapper {
        justify-content: center;
    }

    .consent-footer-links {
        row-gap: 4px;
        column-gap: 8px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .password-rules-wrapper {
        right: -25px;
    }

    /* .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;
    }

    #kc-info-wrapper {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        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;
    } */
}

.pf-c-about-modal-box, .pf-c-accordion, .pf-c-alert, .pf-c-alert-group, .pf-c-app-launcher, .pf-c-avatar, .pf-c-backdrop, .pf-c-background-image, .pf-c-badge, .pf-c-brand, .pf-c-breadcrumb, .pf-c-button, .pf-c-card, .pf-c-check, .pf-c-chip, .pf-c-chip-group, .pf-c-clipboard-copy, .pf-c-content, .pf-c-context-selector, .pf-c-data-list, .pf-c-data-toolbar, .pf-c-divider, .pf-c-drawer, .pf-c-dropdown, .pf-c-empty-state, .pf-c-expandable, .pf-c-form, .pf-c-form-control, .pf-c-input-group, .pf-c-label, .pf-c-list, .pf-c-login, .pf-c-modal-box, .pf-c-nav, .pf-c-notification-badge, .pf-c-options-menu, .pf-c-overflow-menu, .pf-c-page, .pf-c-pagination, .pf-c-popover, .pf-c-progress, .pf-c-radio, .pf-c-select, .pf-c-skip-to-content, .pf-c-spinner, .pf-c-switch, .pf-c-tab-content, .pf-c-table, .pf-c-tabs, .pf-c-title, .pf-c-toolbar, .pf-c-tooltip, .pf-c-wizard, .pf-l-bullseye, .pf-l-flex, .pf-l-gallery, .pf-l-grid, .pf-l-level, .pf-l-split, .pf-l-stack {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-rendering: optimizeLegibility;
}

.error-gap {
    display: block;
    padding-top: 24px;
}

.info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.error-last-button {
    margin-bottom: 24px;
    display: block;
}

.faq-section {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #D9D9D9;
    margin: 0 -54px;
}

.faq-section-inside {
    margin: 0;
    border: none;
}

.consent-page-wrapper .faq-section {
    display: none;
}

.faq-icon {
    width: 16px;
    height: 16px;
    background-image: url('../img/Question.png');
}

.faq-button {
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
}

.faq-button:hover {
    color: #F18500;
}

.sms-email-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logout-sessions {
    margin-bottom: 16px !important;
}

.input-wrapper label.start-left {
    left: 0;
}

@media (max-width: 767px) {
    .faq-section {
        margin: 0 -40px;
    }

    .faq-section-inside {
        margin: 0;
        border: none;
    }
}

.verify-email-link-block, .verify-email-link {
    margin: 32px 0 0 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.verify-email-link {
    display: inline;
    color: #F18500;
    font-weight: 500;
}

::-ms-reveal {
    display: none;
}