/* ── Formulario Simple AJAX - style.css ─────────────────────────────────── */

#fs-formulario {
  max-width: 520px;
  margin: 24px auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

/* Grupos de campo */
.fs-group {
  margin-bottom: 16px;
}

.fs-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.fs-group label span {
  color: #c0392b;
  margin-left: 2px;
}

/* Inputs y textarea */
#fs-formulario input[type="text"],
#fs-formulario input[type="email"],
#fs-formulario textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#fs-formulario input[type="text"]:focus,
#fs-formulario input[type="email"]:focus,
#fs-formulario textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
  background: #fff;
}

#fs-formulario textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botón de envío */
#fs-submit {
  display: inline-block;
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}

#fs-submit:hover {
  background-color: #005a8c;
}

#fs-submit:disabled {
  background-color: #999;
  cursor: not-allowed;
}

/* reCAPTCHA: centrar en móvil si es necesario */
.g-recaptcha {
  margin-bottom: 4px;
}

/* Mensajes de respuesta */
#fs-respuesta {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

#fs-respuesta p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 4px;
}

#fs-respuesta.fs-exito p {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

#fs-respuesta.fs-error p {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  #fs-formulario {
    padding: 16px;
    margin: 12px;
  }
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
