.split-container {
    min-height: 100vh;
    display: flex;
}

.image-section {
    flex: 1;
    background: 
        linear-gradient(135deg, rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.5)),
        url('/static/users/images/street-min.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 3rem;
    transition: background 0.5s ease, filter 0.5s ease;
}

.image-section:hover {
    filter: brightness(1.15);
}

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #fff;
}

.login-container {
    width: 100%;
    max-width: 440px;
}

@media (max-width: 991px) {
    .split-container {
        flex-direction: column;
    }

    .image-section {
        min-height: 200px;
        padding: 2rem;
    }

    .form-section {
        min-height: calc(100vh - 200px);
    }
}