body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: url('../img/conferencia-foro-bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Montserrat';
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}


.container {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

/* Título */
.titulos-container {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Título principal */
.titulos-container h1 {
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* Cinta roja inclinada */
.titulos-container h2 {
  background-color: #0d47a1;
  color: white;
  font-style: italic;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  transform: skew(-10deg);
  text-transform: uppercase;
  margin: 0 auto;
}

.titulos-container h2 span {
  display: inline-block;
  transform: skew(10deg);
  /* endereza el texto dentro */
}


/* Campos */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #ffffff;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background: #ffffff;
  font-family: 'Montserrat';
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0d47a1;
  outline: none;
}

/* Botón */
.form-group button {
  width: 100%;
  padding: 12px;
  background: #0d47a1;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-group button:hover {
  background: #1565c0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.checkbox-label input[type="checkbox"] {
  transform: translateY(1px); /* ajusta la posición vertical */
  width: 16px;
  height: 16px;
}

#grupoGobierno {
  display: none;
}

.form-group select {
  height: 45px;                     /* Igual altura que input */
  padding: 10px 12px;               /* Igual padding que input */
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  -webkit-appearance: none;         /* Quita estilo nativo en Safari */
  -moz-appearance: none;            /* Quita estilo nativo en Firefox */
  appearance: none;                 /* Quita estilo nativo en general */
  box-sizing: border-box;
  line-height: 1.2;
}

/* Contenedor para posicionar la flecha */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 36px; /* espacio para que el texto no tape la flechita */
}

