/* Contenedor general */
.cliengo-contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor centrado */
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Info (imagen + título + descripción) */
.form-info {
  text-align: center;
  margin-bottom: 24px;
}

.info-image {
  max-width: 200px;
  margin-bottom: 16px;
}

.info-title {
  font-weight: 700;
  color: #000;
}

.info-description {
  color: #555;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* Caja del formulario */
.custom-form {
  width: 100%;
  max-width: 500px;
  font-family: "Inter", sans-serif;
  background: #fff;
  padding: px;
  border-radius: px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Formulario interno */
.hs-form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: px;
}

label {
  font-size: px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.input input,
.input textarea,
.hs-input select {
  width: 100%;
  height: px;
  padding: px;
  font-size: px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  box-sizing: border-box;
}

.input textarea {
  min-height: 80px;
  resize: vertical;
}

/* Botón ancho completo */
.actions input {
  width: 100%;
  height: px;
  background-color: {% if module.style.button_bg_color %}{% else %}#7F44F8{% endif %};
  color: {% if module.style.button_text_color %}{% else %}#fff{% endif %};
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.actions input:hover {
  background-color: #5a2ecb;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
}

