/* Brand treatment scoped to the right-hand contact form column. */
#div_block-4-28 #fluentform_1 .ff-el-input--label label {
  color: var(--secondary, #092c50);
  font-weight: 600;
}

#div_block-4-28 #fluentform_1 .ff-el-input--label .ff-el-required {
  color: var(--primary, #ff7108);
}

#div_block-4-28 #fluentform_1 .ff-el-form-control:not([type='checkbox']):not([type='radio']) {
  border: 1px solid rgb(9 44 80 / 28%);
  border-radius: var(--radius-s, 0.375rem);
  background-color: #fff;
  color: var(--secondary, #092c50);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

#div_block-4-28 #fluentform_1 .ff-el-form-control::placeholder {
  color: rgb(9 44 80 / 55%);
  opacity: 1;
}

@media (hover: hover) {
  #div_block-4-28 #fluentform_1 .ff-el-form-control:not([type='checkbox']):not([type='radio']):hover {
    border-color: var(--secondary, #092c50);
  }
}

#div_block-4-28 #fluentform_1 .ff-el-form-control:not([type='checkbox']):not([type='radio']):focus {
  border-color: var(--primary, #ff7108);
  outline: none;
  box-shadow: 0 0 0 3px rgb(255 113 8 / 22%);
}

#div_block-4-28 #fluentform_1 .ff-btn-submit {
  display: inline-flex;
  min-width: 9rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--primary, #ff7108);
  border-radius: var(--radius-s, 0.375rem);
  background-color: var(--primary, #ff7108);
  box-shadow: 0 0.35rem 0.9rem rgb(9 44 80 / 14%);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  #div_block-4-28 #fluentform_1 .ff-btn-submit:hover {
    border-color: var(--secondary, #092c50);
    background-color: var(--secondary, #092c50);
    box-shadow: 0 0.5rem 1.1rem rgb(9 44 80 / 24%);
    color: #fff;
    transform: translateY(-2px);
  }
}

#div_block-4-28 #fluentform_1 .ff-btn-submit:focus-visible {
  outline: 3px solid var(--secondary, #092c50);
  outline-offset: 3px;
}

#div_block-4-28 #fluentform_1 .ff-btn-submit:active {
  transform: translateY(0);
