.category-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.input-wrapper > input {
  width: 65%;
  padding: 8px 18px;
}

.input-wrapper > select {
  width: 30%;
}

#tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.tag {
  background: #32977c;
  color: white;
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}



.tag span {
  cursor: pointer;
  font-weight: bold;
}

.cf-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    background-color: red !important;
}


.cf-form > label,
.cf-form > label > input {
    width: 100%;
}

.cf-button,
.cf-redirect {
    margin-top: 12px;
    width: 100%;
    padding: 16px 20px;
    background-color: #0d5240;
    text-align: center;
    color: white;
    font-size: .88rem;
}

.cf-redirect {
    margin-top: unset;
}