.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  margin: 0 4px 16px;
  padding: 10px 8px;
  overflow: visible;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 251, 255, .76));
  border: 1px solid rgba(229, 234, 241, .9);
}

.brand img {
  display: block;
  width: 100%;
  max-width: 184px;
  max-height: 74px;
  object-fit: contain;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #2f4438;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.stack-actions input {
  width: 100%;
  border: 1px solid #d9e4dc;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: white;
}

.form-grid .wide-field {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.stack-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.stack-actions form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.inline-form {
  display: inline-block;
}
