body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    overflow-x: hidden;
}

.login-container {
    max-width: 1000px;
    width: 100%;
    min-height: 520px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.login-container > .row {
    min-height: 520px;
    margin: 0 !important;
}

.image-col {
    padding: 0;
    display: flex;
}

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

.form-col {
    padding: 40px;
    display: flex;
    align-items: center;
}

.login-form-content {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 767.98px) {
    .image-col {
        display: none;
    }
    .login-container {
        min-height: auto;
        box-shadow: none;
        border-radius: 0;
    }
}

body {
    background: red !important;
}
