/* -----------------------------------------------------------
CONTENTS:
=Main Branding Colours
------------------------------------------------------------*/
/* -----------------------------------------------------------
=Main Branding Colours
Colours for main screen elements
------------------------------------------------------------*/
/* -----------------------------------------------------------
Colours for main interaction elements
------------------------------------------------------------*/
/* -----------------------------------------------------------
Status Colours
------------------------------------------------------------*/
/* -----------------------------------------------------------
Size Variables
------------------------------------------------------------*/
.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    align-items: center;
    position: fixed;
}
.loginPageHidden {
    display: none;
}
.login__wrapper,
.login-redirect__wrapper {
    justify-content: center;
    display: flex;
    flex-grow: 1;
    align-items: center;
    flex-direction: column;
}
.highlighted-section-dark {
    background-color: #c2c4c6;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 1rem;
    border-bottom: 2px solid #ed1c24;
    background-color: #f2f2f2;
    width: 100%;
    height: 56px;
}
.header img {
    height: 45px;
}
.header__left {
    display: flex;
    width: 200px;
}
.header__right {
    display: flex;
    justify-content: flex-end;
    width: 200px;
}
.login__container {
    box-shadow: 0 0 1rem 0.5rem rgba(87, 87, 87, 0.7);
    background-color: rgba(242, 242, 242, 0.9);
    padding: 2rem 2rem 2rem 2rem;
    justify-content: center;
    min-width: 400px;
}
.login-redirect__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding: 2rem;
    box-shadow: 0 0 1rem 0.5rem rgba(87, 87, 87, 0.7);
    background-color: rgba(242, 242, 242, 0.9);
    min-height: 300px;
    min-width: 400px;
}
.login-redirect__container-status {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}
.login__validation-errors,
.login-embedded__error {
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: #ffffff;
}
.login__validation-errors ul,
.login-embedded__error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.login__external-providers-separator,
.login-embedded__external-providers-separator {
    position: relative;
    text-align: center;
    font-size: 1em;
    color: #77787b;
    font-weight: bold;
}
.login__external-providers-separator:before,
.login__external-providers-separator:after,
.login-embedded__external-providers-separator:before,
.login-embedded__external-providers-separator:after {
    position: absolute;
    top: 0.75rem;
    display: block;
    content: "";
    width: 40%;
    height: 1px;
    background: #77787b;
}
.login__external-providers-separator:after,
.login-embedded__external-providers-separator:after {
    right: 0;
}
.login__external-providers-button,
.login-embedded__external-providers-button,
.login-embedded__login-field,
.change-password-embedded__field {
    width: 100%;
}
.smartsuite-logo {
    width: 202px;
    height: 50px;
}
.footer {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #ffffff;
}
.footer__generated-style {
    color: #ffffff;
}
.footer__license-info {
    font-weight: bold;
    color: #000000;
    background-color: #ffb600;
}
.simple-keyboard {
    position: fixed;
    bottom: 0;
    width: 70%;
    margin: 1rem;
}

#enable-keyboard-button {
    bottom: 0;
    right: 0;
    position: absolute;
    cursor: pointer;;
    
    display: flex;
    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    gap: 3.5px;
    
    
    margin-bottom: 5rem;
    margin-right: 1rem;
    padding: 7px 14px;

    border: 1px solid #183C73;
    background: #FFF;
    box-shadow: 0px 0px 4px 2px rgba(87, 87, 87, 0.70);
    color: #183C73;
    /* Text */
    font-family: "Open Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */


}
#enable-keyboard-button:hover {
    background: #eee;
}


.fa-keyboard--padded {
    padding-right: 0.5rem;
}

.user-code-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 1rem auto;
}

.user__popup-wrapper {
    position: absolute;
    left: 0;
}

.user__popup-container {
    position: relative;
    z-index: 3;
    background: #ffffff;
    border: 1px solid #c2c4c6;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
        0px 8px 10px 1px rgba(0, 0, 0, 0.14),
        0px 3px 14px 2px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.user__popup-container a {
    color: #183c73;
}

.user__button {
    color: #575757;
    border: 1px solid transparent;
    background-color: transparent;
    position: relative;
    z-index: 2;
    height: 50px;
}

.user__button:hover {
    color: #ffffff;
    background-color: #183c73;
    border: 1px solid #183c73;
}

.user__button:focus {
    border: 1px solid #13305b;
}

.user__changepassword-horizontal-container {
    width: 285px;
}

.user__button--active,
.user__button--active:focus {
    color: #ffffff;
    background-color: #13305b;
    border: 1px solid #13305b;
}

.menu-link {
    padding: 2px;
}

.user-logout-subheader__changepassword {
    border-bottom: 1px solid #ed1c24;
    margin-bottom: 0.25rem;
}
.user-color {
    color: #575757;
}

.user-logout-header__changepassword {
    background-color: #f2f2f2;
    border-bottom: 1px solid #c4b3b3;
}

@media screen and (max-width: 992px) {
    .header__right {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .header__left {
        display: none;
    }
}
@media screen and (max-width: 425px) {
    .header__right {
        width: 100%;
    }
    .login__wrapper,
    .login-redirect__wrapper {
        width: 85%;
    }
    .login__container {
        display: flex;
        min-width: 300px;
    }
    .login-redirect__container {
        min-width: 300px;
    }
    .footer {
        width: 85%;
    }
}
