.mf-b2b input[type="text"],
.mf-b2b input[type="email"],
.mf-b2b input[type="password"],
.mf-b2b input[type="search"],
.mf-b2b input[type="tel"],
.mf-b2b input[type="number"],
.mf-b2b select,
.mf-b2b textarea,
.mf-b2b .wc-block-components-text-input input,
.mf-b2b .wc-block-components-text-input select,
.mf-b2b .wc-block-components-combobox-control input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--mf-color-border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--mf-color-charcoal);
  padding: 0 14px;
  font-size: 0.95rem;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mf-b2b textarea {
  min-height: 156px;
  padding: 14px;
}

.mf-b2b input:focus,
.mf-b2b select:focus,
.mf-b2b textarea:focus,
.mf-b2b .wc-block-components-text-input input:focus,
.mf-b2b .wc-block-components-combobox-control input:focus {
  border-color: rgba(161, 23, 41, 0.45);
  box-shadow: 0 0 0 4px rgba(161, 23, 41, 0.08);
  outline: none;
}

.mf-b2b label,
.mf-b2b .wc-block-components-checkout-step__description,
.mf-b2b .wc-block-components-title {
  color: var(--mf-color-charcoal);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.6;
}

.mf-b2b .form-row,
.mf-b2b .wc-block-components-text-input,
.mf-b2b .wc-block-components-combobox-control,
.mf-b2b .wc-block-components-address-form__country {
  margin-bottom: 1rem;
}

.mf-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.mf-search-form__button {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .mf-search-form {
    flex-direction: row;
    align-items: center;
  }

  .mf-search-form__input {
    flex: 1;
  }
}
