* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENEDOR GRID */
div {
  background: #ffffff;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}

p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}


