/* Fondo general */
body {
  margin: 0;
  padding: 0;
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Segoe UI', sans-serif;
}


/* Contenedor del formulario */
.formulario-contenedor {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Título */
.formulario h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Etiquetas */
.formulario label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

/* Campos de entrada */
.formulario input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.6rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
.espaciado {
  margin-top: 1.5rem; /* Puedes ajustar a 2rem si lo quieres más amplio */
}

/* Botón */
.formulario button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1.5rem;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario button:hover {
  background-color: #2980b9;
}

/* Espaciado entre elementos */
.separador {
  margin-top: 1.5rem;
}

/* Texto secundario */
.texto-secundario {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.texto-secundario a {
  color: #ecf0f1;
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 600px) {
  .formulario-contenedor {
    padding: 1rem;
  }

  .formulario h2 {
    font-size: 1.5rem;
  }
}
.separador-final {
  margin-top: 3rem;
  border: none;
  height: 2px;
  background-color: #ccc;
  opacity: 0.3;
}

.footer-landpage {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #f0f0f0;
  padding: 2rem 1rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer-contenido {
  max-width: 800px;
  margin: auto;
}

.footer-enlaces,
.footer-redes {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-enlaces a,
.footer-redes a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-enlaces a:hover,
.footer-redes a:hover {
  color: #3498db;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
.pagina {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.captcha-contenedor {
  display: flex;
  justify-content: center;
  margin-top: 2rem; /* aumenta el espacio */
}

