.login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    border-radius: 1rem;
    margin: 0 2vw;
}

.login-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-left .logo {
    width: 177px;
    height: 90px;
    opacity: 1;
}

.login-left .title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.login-right {
    position: relative;
    flex: 1;
    height: 96vh;
    margin: 2vh 0;
    background: url('/images/authentication/authenticationBackground.jpg') right center / cover no-repeat;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: 1;
    background: url('/images/authentication/authenticationBande.svg') center center / contain no-repeat;
}

.login-right-text {
    color: var(--color-white);
    padding: 5rem;
    position: relative;
    z-index: 2;
}

.login-right-text .login-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.login-right-text .login-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CSS for the login page */
@media (max-width: 576px) {
    .login-right {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .login-right-text {
        padding: 2rem;
    }

    .login-right-text .login-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .login-right-text .login-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}