form {
  margin: 0 20px 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-heading {
  padding: 20px 0;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 572px;
  gap: 2px;
}

.custom-form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.number-field {
  width: 56px;
}

.text-area {
  width: 100%;
  font-size: 1rem;
  height: 84px;
  border-radius: 5px;
  padding: 10px 8px;
  border: 1px solid var(--gray);
}

.select-field,
.collection-select {
  width: 100%;
  border: 1px solid var(--gray);
  border-radius: 5px;
}

.search-bar,
.search-field {
  width: 100%;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 10px;
  row-gap: 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.button {
  border: none;
  color: var(--white);
  width: 240px;
  height: 42px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
}

.submit-button {
  background-color: var(--green);
}

.delete-button {
  background-color: var(--red);
}

.rich-text-area {
  border: 1px solid var(--gray);
  border-radius: 5px;
}

.text-field {
  width: 100%;
}
