Hi @Rick ,
SQL Server error logs displays the error for that particular user: Reason: Could not find a login matching the name provided....So the problem is domain cross >referencing in SQL Server
The error message describes clearly:"Could not find a login matching the name provided". If you want to log in SQL Server, you need to have corresponding logins on your sqlserver side. It means, quote from this case: cross-domain-windows-authentication-in-sql-server-2014
As long as the trust relationship between domains is properly configured, and your windows account exists in the remote SQL Server instance, you should be fine.
BR,
Mia
If the answer is helpful, please click "Accept Answer" and upvote it.