body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #eff6ff, #e0f0ff);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.landing-wrapper {
  text-align: center;
  padding: 20px;
}

.logo {
  height: 60px;
  margin-bottom: 20px;
}

.titulo {
  font-size: 2.5rem;
  color: #1d3557;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 1.2rem;
  color: #457b9d;
  margin-bottom: 30px;
}

.btn-ingresar {
  padding: 12px 28px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.btn-ingresar:hover {
  background-color: #0056b3;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}
