.login-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: rgb(243, 243, 255);

    .login-content {
        flex: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;

        .login-container {
            position: relative;
            width: 100%;
            max-width: 860px;
            margin: 2rem;
            background-color: white;
            border-radius: 6px;
            position: relative;
            display: flex;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            min-height: 500px;
            align-items: center;
        }

        .login-box {
            width: 50%;
            padding: 2rem;
        }

        .login-image {
            width: 50%;
            background-image: url(/dashboard/img/login-background.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: 476px;
            border-top-right-radius: 6px;
            border-bottom-right-radius: 6px;
            overflow: hidden;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid #c9e1ff;
        }

        @media (max-width: 768px) {
            .login-container {
                max-width: 400px;
            }

            .login-box {
                width: 100%;
            }

            .login-image {
                display: none;
            }
        }

        .login-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;

            h1 {
                font-size: 1.5rem;
                font-weight: 700;
                text-align: center;
                background-color: white;
                margin-bottom: 0;
                color: var(--oais-primary);
            }

            span {
                font-size: 1rem;
                color: #777;
            }
        }

        #customer-image {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                height: 100%;
            }
        }

        .password-input-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        oais-button {
            margin-top: 4px;
        }

        .footer-text {
            text-align: center;
            width: 100%;
            font-weight: 600;
            color: #666;
        }
    }

    .small-buttons-row {
        display: flex;
        margin-top: 6px;
        align-items: center;
    }

    .forgot-password {
        width: 100%;
        text-align: end;
        font-size: 13px;
        color: var(--oais-blue);
        cursor: pointer;
        margin-top: 6px;

        &:hover {
            text-decoration: underline;
        }
    }

    #select-language {
        display: flex;
        align-items: center;
        gap: 4px;

        span {
            font-size: 13px;
            font-weight: 500;
        }
    }

    .select-language-option {
        padding: 4px 12px;
        cursor: pointer;

        &:hover {
            background-color: #bcdefd;
            border-radius: 6px;
        }
    }

    .text-container {
        position: relative;
        width: 100%;
        text-align: center;

        h2 {
            font-size: 3rem;
            color: white;
        }

        p {
            font-size: 1.115rem;
            color: #ddd;
        }
    }

    .floating-customer-indicator {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        background-color: white;
        border: 1px solid #bcdefd;
        box-shadow: 0 6px 4px rgba(0, 0, 0, 0.2);
        border-radius: 9999px;
        padding: 2px 16px;
        display: flex;
        align-items: center;
        gap: 12px;

        img {
            height: 32px;
        }
    }

    @media (max-width: 600px) {
        .footer-text {
            position: fixed;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
        }

        .login-content {
            height: 100%;
            width: 100%;

            .login-container {
                max-width: 100%;
                max-height: 100%;
                margin: 0;
                width: 100%;
                height: 100%;
                border: none;
                border-radius: 0;
            }
        }
    }
}

.forgot-password-alert {
    display: flex;
    flex-wrap: nowrap;
    padding: 16px;
    border-radius: 6px;
    margin-top: 1rem;
    gap: 12px;

    i {
        margin-top: 2px;
        font-size: 1.25rem;
        vertical-align: middle;
    }

    &.forgot-password-alert-warn {
        background-color: #ffe5bd;
        color: #81520c;
    }

    &.forgot-password-alert-success {
        background-color: #c5ffbd;
        color: #10810c;
    }
}
