@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/InterDisplay-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/InterDisplay-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

html,
body {
    height: 100%;
    font-family: Inter, Arial, sans-serif;
    background-color: #EBEBEB;
    margin: 0;
}

#content-container {
    display: flex;
    min-height: 100%;
}

#login-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    width: 480px;
    padding: 0 48px;
    background-color: #fff;
}

.login-logo {
    margin-bottom: 24px;
    display: inline-block;
    content: '';
    width: 162px;
    height: 48px;
    background-image: url("../images/nasdaq-logo.svg");
}

.login-version {
    margin-bottom: 24px;
    font-size: 16px;
    color: #171717;
    font-weight: 600;
}

.login-title {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
}

.form-container {
    margin-bottom: 0;
}

input,
select {
    font-family: Inter, Arial, sans-serif;
}

input.login-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 8px;
    box-sizing: border-box;
    border: 1px solid #758FBF;
    background-color: #F4F7FC;
    border-radius: 2px;
    font-size: 18px;
    outline: none;
    text-overflow: ellipsis;
}

input.login-input:focus,
.directory-select-opened input.login-input,
input.directory-select-opened {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0092BC;
}

#lower {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.login-submit {
    padding: 6px 12px;
    outline: none;
    cursor: pointer;
    border: none;
    color: #fff;
    margin-left: auto;
    border-radius: 4px;
    background-color: #6F46CE;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 40px;
}

.login-submit:hover {
    background-color: #8050ED;
}

.login-submit:focus {
    background-color: #5838A4;
}

.login-sso {
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    color: #181E33;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    background-color: #F4FAFF;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #758FBF;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 40px;
}

.login-sso:hover {
    background-color: #fff;
    border: 1px solid #BCC8E3;
    color: #4B6AAC;
}

.login-sso:focus {
    background-color: #E6E9F5;
    border: 1px solid #4B6AAC;
    color: #08062A;
}

.form-row {
    margin-bottom: 24px;
}

.form-row h3 {
    font-weight: 500;
}

.login-href {
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #8050ED;
    border-bottom: 1px solid #fff;
    outline: none;
}

.login-href:hover,
.login-href:focus {
    border-bottom: 1px solid #9C75F2;
}

.login-label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #171717;
}

.login-label-title {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.login-label-asterisk {
    margin-right: 4px;
    color: #0080A3;
}

.password-label-row {
    display: flex;
    justify-content: space-between;
}

.login-select-wrap {
    display: inline-block;
    position: relative;
    width: 100%;
}

.login-select-wrap::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    background-color: #CFCFCF;
}

.login-select-wrap::after {
    position: absolute;
    content: '';
    pointer-events: none;
    right: 12px;
    top: 14px;
    width: 5px;
    height: 5px;
    border-left: 2px solid #6E6E6E;
    border-bottom: 2px solid #6E6E6E;
    transform: rotate(-45deg);
}

.directory-select-items {
    background-color: #FFF;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(129, 129, 129, 0.14);
    padding: 8px 0;
    overflow: hidden;
}

.directory-select-option {
    background-color: #ffffff;
    padding: 8px 16px;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.directory-select-option-disabled {
    background-color: #ffffff;
    height: 40px;
    padding: 8px 16px;
    color: #171717;
    font-size: 14px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.directory-select-option:hover {
    background-color: #F4F7FC;
}

.directory-last-hovered {
    background-color: #F2F2F2;
}

.directory-select-hide, .hidden {
    display: none;
}

.error-wrap {
    display: flex;
    align-items: center;
    background-color: #FFD4D6;
    border: 1px solid #E52D38;
    padding: 10px;
    border-radius: 4px;
}

.error-logo {
    flex-shrink: 0;
    margin-right: 10px;
}

.error-label {
    font-size: 14px;
    font-weight: 400;
    color: #171717;
}

.column {
    flex: 1;
    padding: 80px;
}

.information-column {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.information-button {
    display: inline-block;
    padding: 8px;
    background-color: #F4FAFF;
    border-radius: 4px;
    border: 2px solid #A0B1D8;
    text-decoration: none;
    align-self: flex-start;
    color: #181E33;
    font-size: 16px;
    font-weight: 600;
}

.information-button:hover {
    background-color: #fff;
    border-color: #BCC8E3;
    color: #222E4F;
}

.information-button:focus {
    background-color: #E6E9F5;
    border-color: #4B6AAC;
    color: #08062A;
}

.information-text-container {
    margin-bottom: 24px;
}

.information-text {
    max-width: 1280px;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 600;
}

.information-text-subtitle {
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 28px;
}

@media (max-width: 1366px) {
    .information-text-subtitle {
        font-size: 18px;
    }
    .form-row {
        margin-bottom: 8px;
    }
    #lower {
        margin-top: 24px;
    }
    input.login-input {
        height: 32px;
    }
    .login-submit,
    .login-sso,
    .forgot-back-white,
    .forgot-back {
        height: 32px
    }

    #lower .login-creds, .nosso-enabled .login-creds {
        height: 32px;
    }

    .login-href {
        margin-top: 8px;
    }
    .directory-select-items {
        padding: 0;
    }
    .directory-select-option-disabled {
        height: 32px;
    }
    .directory-select-option {
        height: 32px;
    }
    .login-version {
        margin-bottom: 8px;
    }
    .login-select-wrap::after {
        top: 12px;
    }
    .login-title {
        margin-bottom: 8px;
    }
    .login-logo {
        margin-bottom: 18px;
    }

}
@media (min-width: 2000px) {
    .information-text-subtitle {
        font-size: 48px;
    }
}
