*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

.container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.container .label {
  margin-bottom: 8px;
}