/* Fondo general */
body {
  display: flex;
  flex-direction: column; /* apila verticalmente */
  align-items: center;     /* centra horizontalmente */
  min-height: 100vh;
  padding-top: 40px;
  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 */
.registro-contenedor {
  width: 100%;
  max-width: 1200px;
  padding: 3rem;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  grid-template-columns: 1fr 1fr; /* divide en dos columnas */
  gap: 2rem;
}

/* T¨ªtulo */
.registro-contenedor h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Etiquetas */
.registro-contenedor label {
  display: block;
  margin-top: 1.2rem;
  font-weight: bold;
}

/* Campos de entrada */
.registro-contenedor input,
.registro-contenedor textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f4f4f4;
  color: #333;
}

/* Bot¨®n */
.registro-contenedor button {
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* reCAPTCHA */
.g-recaptcha {
  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;
}

/* Responsive */
@media (max-width: 768px) {
  .registro-contenedor {
    padding: 1.5rem;
  }

  .registro-contenedor h2 {
    font-size: 1.6rem;
  }
}
.registro-contenedor label,
.registro-contenedor input,
.registro-contenedor textarea {
  grid-column: span 2; /* por defecto ocupan ambas columnas */
}

.registro-contenedor input[type="text"],
.registro-contenedor input[type="email"],
.registro-contenedor input[type="password"],
.registro-contenedor input[type="date"],
.registro-contenedor textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f4f4f4;
  color: #333;
}
.captcha-contenedor {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.pagina {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.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 */
}

