/* ===============================
   Formulario INGCO – estilo general
   =============================== */

.ingco-form {
  max-width: 650px;
  margin: 0 auto 40px auto;
  padding: 24px 22px;
  background: #000000;
  border-radius: 16px;
  border: 2px solid #ffb000;
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.18);
  color: #ffffff;
  font-size: 14px;
}

/* Título del formulario */
.ingco-form-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #ffb000;
}

/* Grid para acomodar los campos en 2 columnas en desktop */
.ingco-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ingco-form-group {
  display: flex;
  flex-direction: column;
}

/* En escritorio, 2 columnas */
@media (min-width: 768px) {
  .ingco-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Mensaje y checkbox ocupan las 2 columnas */
  .ingco-form-group--full {
    grid-column: 1 / -1;
  }
}

/* Label */
.ingco-form label {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

/* ===============================
   Inputs, selects y textarea
   =============================== */

.ingco-form input,
.ingco-form select,
.ingco-form textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 8px;
  border: 1px solid #444444;
  background: #000000;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
}

/* refuerzo por tipo (para ganar al tema) */
.ingco-form input[type="text"],
.ingco-form input[type="email"],
.ingco-form input[type="tel"],
.ingco-form input[type="number"],
.ingco-form input[type="search"],
.ingco-form select,
.ingco-form textarea {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #444444 !important;
}

.ingco-form input:focus,
.ingco-form select:focus,
.ingco-form textarea:focus {
  outline: 2px solid #ffb000;
  border-color: #ffb000 !important;
}

.ingco-form input::placeholder,
.ingco-form textarea::placeholder {
  color: #aaaaaa;
}

/* Checkbox aviso de privacidad */
.ingco-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #dddddd;
}

.ingco-form .check input[type="checkbox"] {
  width: auto;
  margin: 0;
  background: transparent;
}

/* Botón INGCO */
.ingco-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #ffb000;
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.ingco-btn:hover {
  background: #e39b00;
  box-shadow: 0 0 10px rgba(255, 176, 0, 0.5);
  transform: translateY(-1px);
}

/* Texto de términos */
.ingco-form-terms {
  margin-top: 10px;
  font-size: 12px;
  color: #cccccc;
}

