html,
body {
    height: 100%;
    overflow: auto;
}

.ntt-logo {
    background-image: url('/l/login/static/images/logo-white-ntt.svg');
    height: 30px;
    width: 142px;
    margin-right: 15px;
}

.logo-enabled {
    height: 60px;
    width: 178px;
    margin: 6rem auto;
    display: block;
}

.logo-default-false {
    height: 48px;
    width: 64px;
    margin: 1rem auto;
    display: block;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.okta-logo {
    background-image: url('/l/login/static/images/logo-okta.svg');
}

.entra-logo {
    background-image: url('/l/login/static/images/logo-entra.svg');
}

.ntt-title {
    border-left: solid 1px var(--gray, #606f7d);
    padding-left: 15px;
}

.btn {
    min-width: 150px;
}

.content {
    width: 60%;
    margin: auto;
}

.centre-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.panel {
    width: 100%;
}

.panel-heading {
    padding: 0;
    background-color: var(--navbar-default-bg, #000);
    border-bottom-color: var(--brand-primary);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
}

.alert-danger {
    background: transparent;
    padding: 8px 8px 8px 38px;
    margin-bottom: 16px;
}

/******************************
*   LOGIN                     *
******************************/

.login-template .content {
    width: 25%;
    width: 46rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

.login-template .panel {
    margin: auto;
}

.login-template .panel-body {
    padding: 0 64px 64px;
}

.login-template .default-false {
    margin-bottom: 6rem;
    text-align: center;
}

.login-template .default-false p {
    margin-bottom: 1rem;
}

/******************************
*   SELECT PROFILE            *
******************************/

.select-profile-btn {
    background-color: #068941;
    min-width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-profile {
    background-color: var(--gray-darkest);
    min-height: 65px;
    height: auto;
    padding: 0px 0px 0px 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.select-profile-details {
    padding: 10px 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.select-profile-user-name {
    color: var(--gray);
}

a.select-profile-link:hover {
    text-decoration: none;
}

.select-profile:hover {
    background-color: var(--gray-darker);
}

.select-profile:hover .select-profile-btn {
    opacity: 0.9;
}

/***************************
*   OVERLAY                  *
***************************/

#user-login-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    cursor: pointer;
}

/***************************
*   UTILS                  *
***************************/

.mb--sm {
    margin-bottom: 16px;
}

/***************************
*   SCROLLBAR              *
***************************/
:root {
    --text-color-to-rgb: 69, 85, 101;
}
:root[theme='dark'] {
    --text-color-to-rgb: 255, 255, 255;
}
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--text-color-to-rgb), 0.2) rgba(var(--text-color-to-rgb), 0);
}
*:hover {
    scrollbar-color: rgba(var(--text-color-to-rgb), 0.4) rgba(var(--text-color-to-rgb), 0);
}
*::-webkit-scrollbar-track {
    background: rgba(var(--text-color-to-rgb), 0);
    border: none;
}
*::-webkit-scrollbar-corner {
    background: rgba(var(--text-color-to-rgb), 0);
}
*::-webkit-scrollbar-thumb {
    background-color: rgba(var(--text-color-to-rgb), 0.2);
    border-radius: 3px;
    border: none;
}
*:hover::-webkit-scrollbar-track {
    background-color: rgba(var(--text-color-to-rgb), 0);
}
*:hover::-webkit-scrollbar-thumb {
    background-color: rgba(var(--text-color-to-rgb), 0.4);
}
