body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f6f8;
  color: #333;
}
.hero {
  background-image: url("images/fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.hero-content {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #005A8D;
}
.subtitulo {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
}
.descripcion {
  font-size: 1rem;
  margin-bottom: 15px;
}
.disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}
.boton-acceso {
  display: inline-block;
  padding: 12px 25px;
  background-color: #005A8D;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.boton-acceso:hover {
  background-color: #003c5c;
}
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #555;
}
.formulario {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  overflow: visible;
}

label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}
input, select {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  margin-top: 30px;
  background-color: #005A8D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background-color: #004066;
}
.resultado {
  margin-top: 40px;
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #0077b6;
}
