/* ===============================
   HEADER FORMULARIO
=============================== */

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin: 0;
}

/* ===============================
   FORMULARIO
=============================== */

.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

/* Grupo */
.control-group {
  margin-bottom: 1.4rem;
}

/* Labels */
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #222;
}

/* Inputs */
.contact-form input.form-control,
.contact-form textarea.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e10600;
  box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.15);
  outline: none;
}

/* Campo requerido */
.star,
.red {
  color: #e10600;
  font-weight: 700;
}

/* ===============================
   CAPTCHA (NO ROMPER)
=============================== */

#sg_password_wra {
  margin-top: 1.2rem;
}

#sg_password_area {
  border-radius: 8px;
  overflow: hidden;
}

/* Botón limpiar captcha */
#sg_password_wra .button {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #e10600;
  text-decoration: none;
}

/* ===============================
   BOTÓN ENVIAR
=============================== */

.controls {
  text-align: center;
  margin-top: 2rem;
}

.controls .btn {
  background: #e10600;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 6, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.controls .btn:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {

  .contact {
    padding: 2rem 1.6rem;
  }

  .page-header h2 {
    font-size: 1.6rem;
  }

  .controls .btn {
    width: 100%;
  }
}