.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-input {
  width: auto;
  height: auto;
  position: relative;
}

.form-input label {
  font-size: 12px;
  position: absolute;
  display: inline-block;
  top: 0;
  transform: translateY(-50%);
  left: 0;
  margin-left: 16px;
  z-index: 1 !important;
  color: #191f24;
  font-feature-settings: "liga" off, "clig" off;
  background-color: #fff;

  /* input/label */
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 100% */
  letter-spacing: 0.15px;
}

.form-input svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.form-input input {
  padding-left: 40px;
}

.form-control:hover {
  border: 1px solid #e98f35;
  box-sizing: border-box;
}

.form-control:focus {
  outline: 2px solid #e98f35;
  outline-offset: -1px;
}

.form-control {
  all: unset;
  width: 100%;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16.5px 14px;
  transition: all 0.25s ease;
}

#form-submit {
  display: flex;
  max-width: 440px;
  margin-top: 24px;
  padding: 12px 48px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: none;
  background: #f65713;
  color: #fff;

  /*Text style*/
  font-feature-settings: "liga" off, "clig" off;
  font-family: Figtree;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
}

.form-control::placeholder {
  color: rgba(25, 31, 36, 0.6);
  font-feature-settings: "liga" off, "clig" off;

  /* input/value */
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.15px;
}

.form-respuesta {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  display: none; /* Se muestra con JS */
}

.form-respuesta.exito {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-respuesta.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-control-wrap.error input {
  border-color: #dc3545;
}

.helper-text {
  color: #dc3545;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

.form-respuesta.exito {
  color: #28a745;
}

.form-respuesta.error {
  color: #dc3545;
}

/* Estilos para reCAPTCHA */
.recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
  margin: 8px 0;
}

.recaptcha-container .g-recaptcha {
  margin: 0 auto;
}

.recaptcha-container p {
  text-align: center;
  margin: 0;
  padding: 10px;
}

/* Para reCAPTCHA v3 invisible */
.sfp-recaptcha-v3 {
  display: none;
}

/* Badge de reCAPTCHA v3 - Posicionado a la izquierda */
.grecaptcha-badge {
  visibility: visible !important;
  z-index: 9999;
  /* Mover a la izquierda */
  left: 4px !important;
  right: auto !important;
  bottom: 4px !important;
}