.login {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    min-height: 520px;
}

.imagen-login {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-logo-vertical {
    max-height: 360px;
    max-width: 80%;
    object-fit: contain;
    display: block;
}

.login-lado {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.login-contenedor {
    width: 100%;
    max-width: 370px;
    padding: 10px;
}

.btn-login {
    height: 48px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #0d3b66 0%, #145da0 100%);
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-login:hover {
    color: #ffffff;
    transform: translateY(-1px);
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    .login {
        min-height: auto;
    }

    .imagen-login {
        display: none;
    }

    .login-logo-vertical {
        max-height: 180px;
    }

    .login-lado {
        min-height: auto;
    }

    .login-contenedor {
        max-width: 100%;
        padding: 30px 25px;
    }
}