Storing Form data in a different database

You can use $wpdb to access any database you have access to (credentials for) so one site or the other could access its partner’s database or both could access a third database. It shouldn’t be hard but you will need to write most of the SQL to do it.

If you are in a position to refactor this, you could consider having both sites share the same database, via distinct database prefixes, and then save to custom table instead of bothering with access to multiple databases.

Your question is not really specific enough to allow for a more detailed answer.