  /* Add this to style the reCAPTCHA widget */
  .g-recaptcha {
    margin: 15px 0;
    transform-origin: left top;
    -webkit-transform-origin: left top;
  }
  
  /* Make reCAPTCHA responsive */
  @media screen and (max-width: 600px) {
    .g-recaptcha {
      transform: scale(0.85);
      -webkit-transform: scale(0.85);
    }
  }