to use the windows version of curl I suggest first to create a pfx file:
openssl pkcs12 -export -in client.crt -out client.pfx -key client.key
you will prompted for a password. use it in the curl command:
curl --cacert ca.crt --cert client.pfx:password "https://myurl"