/* wrapper */
#cfi-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* each field */
.cfi-field {
  margin-bottom: 1em;
}

/* inputs & select & textarea */
.cfi-field input,
.cfi-field select,
.cfi-field textarea {
  width: 100%;
  padding: .75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background: #f9f9f9;
}

/* submit button */
#cfi-submit {
  background-color: #37a744;
  color: #fff;
  padding: .75em 1.5em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  display: block;
  width: 100%;
}

#cfi-submit:hover {
  background-color: #2e8a39;
}


.cfi-row {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
.cfi-field.half {
  width: 48%;
}
