/* Custom reCAPTCHA Styling for Tour Chain Landing Page */

/* Center and style the reCAPTCHA container */
.g-recaptcha {
  display: inline-block;
  margin: 10px 0;
}

/* Responsive adjustments for mobile devices */
@media screen and (max-width: 576px) {
  /* Scale down reCAPTCHA on small screens */
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform: scale(0.85);
    -webkit-transform-origin: 0 0;
  }
}

@media screen and (max-width: 400px) {
  /* Further scale down for very small screens */
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform: scale(0.75);
    -webkit-transform-origin: 0 0;
  }
}

/* Ensure the reCAPTCHA container parent has proper spacing */
.form-group .g-recaptcha {
  margin-bottom: 0;
}

/* Add error message styling for CAPTCHA validation */
.captcha-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.captcha-error.show {
  display: block;
}
