/* Ajustes solo para pantallas pequeñas */

@media (max-width: 859px) {
  body {
    padding: 2rem 1.25rem 3rem;
  }
  .grid {
    grid-template-columns: 100%;
    justify-content: center;
    margin-top: 5rem;
  }
  .checkbox-label {
    align-items: center;
    font-size: 9.5px;
  }
  .checkbox-label input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem 1rem 2.5rem;
  }
  .grid {
    grid-template-columns: 100%;
    justify-content: center;
    margin-top: 4rem;
  }
  .checkbox-label {
    align-items: center;
    font-size: 9.5px;
  }
  .checkbox-label input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
  }
}