/* Diseño Responsivo y Moderno */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4; /* Fondo gris claro */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  width: 90%;
  max-width: 500px; /* Tamaño ideal para móvil y tablet */
  text-align: center;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h1 {
  color: #333;
  margin: 0;
  font-size: 2rem;
}

p {
  color: #666;
  margin-top: 10px;
}

/* Ajustes para Desktop */
@media (min-width: 1024px) {
  .card {
    padding: 3rem;
  }
  h1 { font-size: 2.5rem; }
}
