Hey man, hopefully this helps. Here’s what I’ve found:
Line 1163 of your theme is where the root of your problem is. The line reads:
.post-content blockquote, .post-content iframe, .post-content .mejs-container, .post-content .wp-video {
width: 1296px !important;
margin-left: -196px;
}
We only want to grab this specific iframe as to not disturb the styling of the other iframes you may have in your site, so add this code to override this iframe’s CSS:
.krown-form iframe {
margin-left: 0 !important;
margin-top: 0 !important;
}
I also noticed your “privacy & terms” text went a little crazy. You should be able to add position relative to your iframe to fix this problem.
Finally, now that we’ve fixed the location of your recaptcha, it seems the submit button is down a little further than it needs to be. Personal preference, but it looks like you’ve added some custom CSS that needs a bit revised.
You originally added 175px of top margin to your submit button, I would only add 100px.
#comments #submit {
margin-top: 100px !important;
width: 100% !important;
}
Hopefully this helps at all. You should be able to modify your theme’s CSS to fix these problems, or alternatively add them in WordPress’ new Custom CSS box in the theme appearance menu. Looks like that might have been where you added your stylings for the submit button.
Hope this helps!!!