form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input,
select,
textarea {
  background-color: #ffffff;
  color: #000000;
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-row {
  align-items: center;
}

.checkbox-row label {
  margin-left: 8px;
  font-size: 14px;
}

.checkbox-row .link {
  color: #1976d2;
  cursor: pointer;
  text-decoration: underline;
}

button {
  padding: 14px 24px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

button:disabled {
  background: #ccc;
}
