﻿.unauthorized {
    background-color: var(--color-gray-1000);
    margin-bottom: 0;
}

.unauthorized header {
    margin-bottom: 20px;
}

.unauthorized h1,
.unauthorized h2 {
    margin: 0;
}

.unauthorized button.dropdown-toggle {
    justify-content: space-between;
    width: 100%;
}

.unauthorized .user-language-list {
    top: calc(100% - 10px);
    left: 20px;
    right: 20px;
}

.unauthorized .content {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.column-left,
.column-right {
    display: none;
    align-items: center;
    flex-direction: column;
    border: solid 2px var(--login-border);
    text-align: center;
    width: 100vw;
    padding: 0 50px;
}

.column-left.active,
.column-right.active {
    border: solid 2px var(--login-border);
    display: flex;
}

.column-left {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--login-bg-left, --color-primary);
    border-right-width: 1px;
    overflow: hidden;
}

.column-left .image-login {
    max-width: 405px;
    max-height: 630px;
}

.column-right {
    justify-content: space-between;
    background-color: var(--login-bg-right, --color-light);
    border-left-width: 1px;
}

.login-form,
.reset-password-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50%;
}

.login-form h2,
.reset-password-form h2 {
    font-size: 16px;
}

.login-form input,
.login-form button,
.reset-password-form input,
.reset-password-form button {
    margin-bottom: 10px;
}

.login-non-sso {
    display: none;
}

.login-non-sso.active {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 991px) {
    .unauthorized .content {
        display: flex;
        width: 810px;
        height: 630px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .column-left,
    .column-right {
        display: flex;
        width: 50%;
    }

    .column-left {
        justify-content: center;
        border-top-left-radius: var(--radius-panel);
        border-bottom-left-radius: var(--radius-panel);
    }

    .column-left button {
        display: none;
    }

    .column-right {
        justify-content: space-between;
        border-top-right-radius: var(--radius-panel);
        border-bottom-right-radius: var(--radius-panel);
    }
}