@media screen and (max-width: 600px) {
  .content {
    width: 100%;
    padding: 0 10px;
  }
  
  .cards {
    grid-template-columns: auto auto;
    width: 100%;
    gap: 1vw;
  }

  .cards card {
    min-width: 50%;
  }

  /* notes forms */
  .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-not-active {
    display: none;
  }

  .form input[type="text"],
  .form input[type="date"] {
    width: 100%;
  }
}