@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

* {
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    font-style: normal;
}

.hidden {
    display: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
    color: #212B36;
    background-color: #F9FAFB;
    height: 100vh;
    width: 100vw;
    margin: 0;
}

a {
    text-decoration: none;
}

h1 {
    color: #29343D;
}

h2 {
    color: #29343D;
}

h3 {
    color: #29343D;
    margin: 0 0 16px 0;
    font-size: 20px;
}

h4 {
    color: #637381;
}

h5 {
    color: #637381;
    margin-bottom: 0;
}

h6 {
    color: #637381;
}

ul {
    color: #637381;
}

ol {
    color: #637381;
}

p {
    color: #637381;
}

input [type="checkbox"] {
    height: 21px;
    width: 21px;
}

header {
    padding: 32px 40px;
    background: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(145, 158, 171, 0.24);
    width: 100%;
}

header a {
    display: inline-flex;
    color: #475663;
    font-size: 13px;
    line-height: 22px;
}

footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(145, 159, 171, 0.24);
    padding: 16px 40px;
    width: 100%;
    margin-top: 62px;
}

footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer nav li {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    margin-right: 8px;
}

footer nav a {
    color: #2757E7;
}

@media screen and (max-width: 600px) {
    footer {
        flex-direction: column;
        padding: 16px 40px;
    }

    footer nav {
        margin-bottom: 24px;
    }
}

hr {
    border: 1px solid #919EAB3D;
}

#language-picker-dropdown {
    width: 95px;
    height: 30px;
    border: 1px solid rgba(145, 159, 171, 0.32);
    border-radius: 8px;
    padding: 0 8px;
    color: #475663;
    font-size: 13px;
    line-height: 22px;
}

#kc-container {
    width: 564px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

#kc-container-wide {
    width: 710px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

#kc-container-wide #kc-content {
    width: 100%;
}

#back-button > :last-child {
    margin-left: 8px;
}

@media screen and (max-width: 600px) {
    #kc-container {
        width: 100%;
        padding: 0 16px;
    }
}

@media screen and (max-width: 954px) {
    #kc-container-wide {
        width: 100%;
        padding: 0 16px;
    }
}

.flex-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-between{
    justify-content: space-between;
}

#kc-header {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #29343D;
}

.logo {
    max-width: 130px;
    margin: 40px auto 0;
    height: 40px;
}

.logo img {
    width: 100%;
}

#kc-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px;
    width: 566px;
    background: #ffffff;
    box-shadow: 01px 3px rgba(145, 158, 171, 0.32);
    border-radius: 16px;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 40px 0;
}

@media screen and (max-width: 566px) {
    #kc-content {
        width: 100vw;
    }
}

.caption {
    margin-top: 0;
}

.kc-info-wrapper p {
    position: static;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #637381;
    align-self: stretch;
}

.kc-feedback-text {
    width: 100%;
}

#kc-login {
    cursor: pointer;
}

#login-expired {
    display: none;
}

#info-text {
    position: static;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #637381;
}

#email-placeholder {
    margin: 4px 0;
    height: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #29343D;
}

#rememberMe {
    cursor: pointer;
}

.pf-m-error {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #E50029;
    margin-top: -10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.error {
    border: 1px solid #E50029 !important;
}

.pf-c-button {
    cursor: pointer;
}

#kc-form {
    margin: 0;
}

.form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
}

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

.form-group-md {
    height: 60px;
    width: 416px;
    margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
    .form-group-md {
        height: 60px;
        width: 100%;
        margin-bottom: 15px;
    }
}

.form-group-action-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
}

.form-settings {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.float-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    border: solid 1px #919FAB;
    padding: 0 8px;
    position: relative;
    border-radius: 8px;
    height: 100%;
}

.float-container > input {
    border: none;
    font-size: 16px;
    outline: 0;
    background-color: transparent;
    margin-top: 20px;
    width: 100%;
    height: 35px;
}

.float-container label {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    top: 5px;
    z-index: 10;
    color: #637381;
}

.float-container:hover {
    border: 1px solid #475663;
}

.is-focused, .is-focused:hover {
    border: 1px solid #2757E7;
    caret-color: #2757E7;
}

.is-focused label, .is-focused:hover label {
    color: #2757E7;
}

#selector-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    align-content: stretch;
    padding: 5px;
    height: 56px;
    border: 1px solid rgba(145, 159, 171, 0.32);
    border-radius: 8px;
    background-color: #f4f6f8;
}

#selector-box > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 4px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

#selector-box .divider {
    width: 1px;
    height: 60%;
    background-color: rgba(145, 159, 171, 0.32);
}

#active-selector {
    background: rgba(39, 87, 231, 0.12);
    border: 1px solid #2757E7;
    color: #2757E7;
    box-sizing: border-box;
    border-radius: 4px;
    height: 100%;
}

.qr-box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 10px 0 20px 0;
    background-color: #f9fafb;
    border: 1px solid rgba(145, 159, 171, 0.32);
    box-sizing: border-box;
    border-radius: 8px;
}

.qr-box a {
    font-weight: 600;
    font-size: 15px;
    color: #2757E7;
}

#qr-code {
    margin: 10px;
    height: 316px;
    width: 316px;
}

#qr-decoded {
    margin-bottom: 10px;
}

#authenticator-app {
    display: block;
}

#sms {
    display: none;
}

#email {
    display: none;
}

.button-md {
    padding: 0 85px 0 85px;
}

.button-sm {
    padding: 0 20px 0 20px;
}

.button-full {
    width: 100%;
}

.button-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    column-gap: 8pt;
    padding-top: 15px;
}

.button-row > input {
    flex: 1
}

.button-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    height: 48px;
    background: #2757E7;
    box-shadow: 0 2px 8px rgba(39, 87, 231, 0.24);
    border-radius: 8px;
    cursor: pointer;
}

.button-primary:hover {
    background: #0D0DBD;
}

.button-primary input {
    color: #ffffff;
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    line-height: 26px;
    align-self: stretch;
}

.button-secondary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    border: 1px solid rgba(39, 87, 231, 0.48);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #2757E7;
    background-color: #FFFFFF;
    cursor: pointer;
}

.button-secondary:hover {
    background: #2757E714;
    border: 1px solid #0D0DBD;
    color: #0D0DBD;
}

.button-secondary-grey {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    float: right;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #475663;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #919FAB52;
    background-color: #FFFFFF;
}

.button-secondary-grey:hover {
    background: #919FAB;
    color: #29343D;
}

.button-tertiary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    float: right;
    border: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #2757E7;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
}


.button-tertiary-grey {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    float: right;
    border: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #475663;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
}

.normalize-interaction-button {
    background-color: transparent;
    border: none;
    z-index: 10000;
    cursor: pointer;
}

.normalize-form-button {
    outline: none;
    cursor: pointer;
}

.label-and-tooltip-wrapper {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.form-helptext {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #637381;
    margin-top: -10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.info-box {
    margin-top: 36px;
}

.link {
    font-weight: 600;
    font-size: 15px;
    color: #2757E7;
}

.alert {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    padding: 16px 24px 16px 16px;
    margin: 16px 0 16px 0;
    position: static;
    width: 100%;
    border-radius: 8px;
}

.alert-success {
    color: #004E39;
    background-color: #CBFAC8;
}

.alert-warning {
    color: #7A2F09;
    background-color: #FFF3D6;
}

.alert-error {
    color: #6D003D;
    background-color: #FDD5CA;
}

.alert-info {
    color: #637381;
    background-color: #919FAB1E;
}

.alert .kc-feedback-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 4px;
}

.alert .kc-feedback-text {
    font-size: 14px;
}

.icon-and-description-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.fa {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}
