:root {
    --primary-color: #2668B2;
    --secondary-color: #2668B2;
    --background-color: #f7f7f7;
    --text-color: #FFF;
    --link-color: #C4CADA;
    --font-family: "Source sans 3";
    --border-radius: 6px;
    --box-shadow: 0px 0px 10px 0px #0000001A;
}

.pf-v5-c-login {
    display: flex;
    padding: 0;
}

.left-section {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #00104B 100%);
    color: var(--text-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-section .logo {
    height: 40px;
    width: 400px;
}

.left-section .footer-links a {
    color: var(--text-color);
    margin: 0 10px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 24px;

    a {
        position: relative;
    }
}


.footer-links a:after {
    position: absolute;
    content: ">";
    margin-left: 4px;
    top: 1px;
}

.login-form, .forgot-psw-form {
    background: white;
    border: 1px solid #F1F1F4;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    width: 350px;
}

h1 {
    font-size: 24px;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    box-sizing: border-box;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 0.9em;
    text-decoration: none;
    color: var(--secondary-color);
}

.separator {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9em;
    color: #777;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper h1 {
    margin: 0;
    font-weight: 700;
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    line-height: 18px;

}

.header-wrapper .pf-v5-c-form-control {
    width: 150px;
}

.pf-v5-c-form-control input {
    border-radius: var(--border-radius);
    border: 1px solid #DBDFE9;
    padding: 10px;
    width: 100%;
    background: #FCFCFC;
}

.pf-v5-c-form-control input:focus-visible {
    outline: 1px solid #2668B2;
}

.pf-v5-c-form-control:after {
    border-bottom: none;
}

.modal {
    background-color: #00104B;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #FFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 14px 0 #0F2A5108;
    position: relative;
    padding-bottom: calc(30px + 60px);
}

.modal-section {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.separator-line {
    border-top: #F1F1F4;
}

.modal-section h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #071437;
}

.modal-section h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-section p {
    font-size: 14px;
    font-weight: 400;
    color: #4B5675;
}

.modal-section li {
    font-size: 14px;
    font-weight: 400;
    color: #4B5675;
    margin-left: 16px;
}

.qr-wrapper {
    display: flex;
    gap: 50px;
}

.qr-wrapper-column {
    display: flex;
    flex-direction: column;
}

.submit-button {
    background-color: #2668B2 !important;
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100px !important;
    border-radius: var(--border-radius);
}

.pf-v5-c-input-group__item input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pf-v5-c-input-group__item span {
    width: 100%;
}

.pf-v5-c-login__main-footer-band {
    border: unset;
    padding: 0;
}

.pf-v5-c-login__main-footer-links {
    padding: 0;
}


.pf-v5-c-input-group__item button:after {
    background: transparent;
    border: 1px solid #ddd;
    border-left: unset;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.pf-v5-c-input-group {
    width: 100%;
}

.login-separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-separator-line {
    display: flex;
    height: 1px;
    width: 100%;
    background: #F1F1F4;
}

.login-separator-text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 10px;
    line-height: 12px;
    color: #78829D;
    margin: 0 10px;
}

.dropdown-local {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DBDFE9;
    border-radius: var(--border-radius);
}

.dropdown-local select {
    background-color: #FCFCFC;
    border-radius: var(--border-radius);
    padding-left: 8px;
    font-size: 11px;
    line-height: 12px;
    width: 120px;
    height: 30px;
    appearance: none;
}


.dropdown-icon {
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
    color: #99A1B7;
    margin-right: 8px;
}

.forgot-psw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label > span {
    font-size: 14px;
    font-weight: 400 !important;
    color: #071437;
}

.reset-password-btn {
    margin-bottom: 8px;
}

.pf-v5-c-form__actions {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}

.pf-v5-c-button.pf-m-primary {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.pf-v5-c-button.pf-m-secondary {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.toast {
    max-width: 350px;
}

.modal-header-wrapper {
    display: flex;
    justify-content: space-between;
}

#kc-totp-settings-form {
    margin-top: 16px;
}

#kc-totp-supported-apps {
    margin-top: 8px;
}

.pf-m-action {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

#totp-manual {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

#kc-reset-password-form {
    h1 {
        font-weight: 700;
        font-size: 20px;
    }

    .pf-v5-c-form__actions {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }
}

.pf-v5-c-form-control:before {
    border-style: unset;
}

.pf-v5-c-button {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px;
}



