.content {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.login-form input {
  font-size: 1.1em;
}

.create-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;

  input {
    font-size: 1.1em;
  }
}

.products {
  display: flex;
  flex-direction: column;
  gap: 8px;

  .item {
    border-width: 1px;
    border-style: solid;
    border-color: grey;
    border-radius: 4px;
    background-color: #bbe4e9;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;

    p {
      margin: 0 0 0 16px;
      font-size: 1.2em;
    }

    input {
      border-width: 0px;
      cursor: pointer;
      background: none;
      margin: 0 16px 0 0;
      padding: 0;
      font-size: 2.2em;
    }
  }
}
