/* hCaptcha styling for contact page */
.h-captcha-container {
  display: flex;
  justify-content: flex-start;
  margin: 1rem 0;
}

.h-captcha {
  display: inline-block;
}

/* Captcha error message styling */
.captcha-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
  padding: 5px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
  width: 100%;
}

/* Responsive styling */
@media (max-width: 768px) {
  .h-captcha-container {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .h-captcha {
    transform: scale(0.85);
    transform-origin: left center;
  }
}

@media (max-width: 375px) {
  .h-captcha {
    transform: scale(0.77);
    transform-origin: left center;
  }
}
