html, body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Proxima Nova", Arial, sans-serif;
    font-size: 14px;
    line-height: normal;
    color: #585858;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

body,
.auth-page {
    width: 100vw;
    min-height: 100vh;
    max-width: 100%;
}

.auth-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.logo-content,
.form-content {
    min-height: 100vh;
}

.logo-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40%;
    background: -webkit-gradient(linear, right top, left top, from(#00a0de), to(#005487));
    background: -webkit-linear-gradient(right, #00a0de, #005487);
    background: -o-linear-gradient(right, #00a0de, #005487);
    background: linear-gradient(-90deg, #00a0de, #005487);
}

    .logo-content > .logo {
        width: 100%;
        height: 100%;
        max-height: 200px;
        max-width: 500px;
        background-size: contain;
    }

.form-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 80px 122px;
    background-color: #f8f9fb;
}

.logo-list > .item {
    display: inline-block;
    margin-left: 5px;
    font-size: 21px;
    font-weight: bold;
    color: #000000;
}

    .logo-list > .item:first-child {
        margin-left: 0;
    }

.logo-iqvia-small {
    width: 200px;
    height: 50px;
    background-size: contain;
    margin-bottom: 15px;
}

.header-logo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

    .header-logo > .item {
        font-size: 21px;
        font-weight: bold;
        color: black;
    }

        .header-logo > .item:first-child {
            padding-top: 3px;
        }

        .header-logo > .item:nth-child(2) {
            margin-left: 0;
        }

.form-container {
    max-width: 304px;
}

.form-content > .form {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
}

.form-content > .footer {
    padding: 0 10px;
    color: #b5b5b5;
    font-size: 12px;
}

.form-container > .header {
    font-weight: bold;
    color: #000000;
}

.form-container > .login {
    font-size: 40px;
}

.form-container > .impersonate {
    font-size: 35px;
    padding-bottom: 10px;
}

.form-control-input-dropdown-impersonate {
    width: 100%;
    padding: 5px 5px;
    border-radius: 4px;
    font-size: 14px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(41, 125, 253, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(41, 125, 253, .16);
    box-shadow: 0 8px 16px 0 rgba(41, 125, 253, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(41, 125, 253, .16);
}

.form-container > .relogin {
    font-size: 26px;
}

.form-container > .header + .groups,
.form-container > .description + .groups,
.form-container > .description + .actions {
    margin-top: 45px;
}

.form-container > .groups + .actions {
    margin-top: 80px;
    list-style: none;
}

.form-container > .groups + .message {
    margin-top: 60px;
}

.form-container > .actions > .action {
    margin-top: 20px;
}

    .form-container > .actions > .action:first-child {
        margin-top: 0;
    }

.form-container > .message {
    position: relative;
    font-size: 13px;
}

    .form-container > .message.-error {
        color: #e20000;
    }

    .form-container > .message + .actions {
        margin-top: 20px;
    }

.form-container > form + form {
    margin-top: 20px;
}

.external-login-list {
    margin-top: 20px;
}

.form-group {
    margin-top: 38px;
}

    .form-group:first-child {
        margin-top: 0;
    }

.form-label:hover,
.form-button:hover {
    cursor: pointer;
}

.form-control-data + .form-control-input,
.form-control-data + .form-control-recaptcha {
    margin-top: 11px;
}

.form-control-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-container > .description,
.form-label {
    font-size: 13px;
    color: #444;
}

.form-control-input {
    position: relative;
    height: 40px;
}

    .form-control-input > .control,
    .form-button {
        width: 100%;
        height: 40px;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 14px;
    }

    .form-control-input > .control {
        border: 1px solid #b5b5b5;
        color: #000000;
        background: #fff;
    }

    .form-control-input.-has-action > .control {
        padding-right: 40px;
    }

    .form-control-input.-has-action > .action {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        outline: none;
    }

.external-login {
    margin-bottom: 20px;
}

.toggle-password-visibility {
    display: block;
    height: 24px;
    width: 24px;
    background-size: contain;
}

    .toggle-password-visibility.-shown {
        background: url("../images/eye_crossed.svg");
    }

    .toggle-password-visibility.-hidden {
        background: url("../images/eye.svg") no-repeat;
    }

.form-control-recaptcha {
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

.form-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    text-decoration: none;
    color: #fff;
    position: relative;
}

    .form-button.-primary {
        background: #297dfd;
        -webkit-box-shadow: 0 8px 16px 0 rgba(41, 125, 253, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(41, 125, 253, .16);
        box-shadow: 0 8px 16px 0 rgba(41, 125, 253, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(41, 125, 253, .16);
    }

    .form-button.-secondary {
        background: #FFAA00;
        -webkit-box-shadow: 0 8px 16px 0 rgba(255, 170, 0, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(255, 170, 0, .16);
        box-shadow: 0 8px 16px 0 rgba(255, 170, 0, .32), 0 4px 4px 0 rgba(0, 0, 0, .04), 0 4px 8px 0 rgba(255, 170, 0, .16);
    }

.form-button,
.toggle-password-visibility {
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

    .form-button:hover,
    .toggle-password-visibility:hover {
        opacity: .7;
    }

    .form-button:active,
    .toggle-password-visibility:active {
        opacity: .6;
    }

.page-link {
    color: #297dfd;
    font-size: 14px;
    text-decoration: none;
}

    .page-link:hover {
        color: #267afd;
    }

    .page-link:active {
        color: #0566fc;
    }

.password-reset-valid-button-margin {
    margin-top: 40px !important;
}

.password-validation-margin {
    margin-top: 20px !important;
}

@media (max-width: 992px) {
    .form-content {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 768px) {
    .form-content {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 576px) {
    .logo-content {
        width: 0;
    }

    .form-content {
        padding: 40px 40px;
    }

    .form-container {
        max-width: 100%;
    }

        .form-container > .header + .groups,
        .form-container > .description + .groups,
        .form-container > .description + .actions {
            margin-top: 30px;
        }

    .form-group {
        margin-top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .g-recaptcha iframe {
        max-width: 100% !important;
        transform: scale(0.82) !important;
        -webkit-transform: scale(0.82) !important;
        transform-origin: center center !important;
        -webkit-transform-origin: center center !important;
    }

    #rc-imageselect {
        transform: scale(0.87) !important;
        -webkit-transform: scale(0.82) !important;
        transform-origin: 0 0 !important;
        -webkit-transform-origin: 0 0 !important;
    }
}

.password-expired-message-container > .validation-summary-errors {
    margin-top: 10px;
}

.input-validation-error {
    border-color: #e20000 !important;
    color: #e20000;
}

.menu-dots {
    display: none;
    margin-left: auto;
    cursor: pointer;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

    .menu-dots.visible {
        display: inline-block;
    }

.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .item .menu-dots {
        margin-left: auto;
    }