.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;        
    justify-content: center;
}

.login-left {
    width: 47.5%;
    margin-left: 2.5%;
    display: flex;               
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.login-content {
    max-width: 393px;
}

.login-column.login-left {
    position: relative;
}

.login-footer-logo {
    position: fixed;
    bottom: 30px;
    margin: auto;
    left: 25%;
    transform: translateX(-50%);
}

.login-right {
    width: 47.5%;
    margin-right: 2.5%;
    display: flex;
    align-items: center;
}

.login-image-container {
    width: 525px;
    max-height: 620px;
    background-size: cover;
    overflow: hidden;
    border-radius: 12px;
}

.login-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-bg-mobile {
    display: none;
}

@media (max-width: 991px) {

    .login-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        gap: 0;
    }

    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
        margin: auto !important;
        padding: 0;
        display: flex;
        align-items: flex-start;
    }

    .login-bg-mobile {
        display: block;
        position: absolute;
        inset: 0;
        background: url('../images/rb-notext.png');
        background-size: cover;
        background-position: center;
        opacity: 0.3;
        z-index: 1;
    }

    .login-content {
        position: relative;
        z-index: 2;
        background: rgba(255,255,255,0.8);
        margin: auto;
        padding: 20px;
        border-radius: 10px;
        backdrop-filter: blur(8px);
    }

    .login-footer-logo {
        left: 50%;
    }
}
