import { ModalBodyTerms } from './styles';

export const RecaptchaTerms = () => {
  return (
    <ModalBodyTerms style={{ marginBottom: 0 }}>
      This site is protected by reCAPTCHA and the Google{' '}
      <a target="_blank" href="https://policies.google.com/privacy">
        Privacy Policy
      </a>{' '}
      and{' '}
      <a target="_blank" href="https://policies.google.com/terms">
        Terms of Service
      </a>{' '}
      apply.
    </ModalBodyTerms>
  );
};
