input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea,
.fluentform .ff-el-form-control {
  width: 100%;
  padding: 1.125rem 1.25rem !important;
  border-radius: 10px;
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--lato);
  color: var(--wp--preset--color--black);
  background: #f8f9f8;
  border: 1px solid #e9e9e9;
  box-sizing: border-box;
  transition: all var(--transition-duration);

  &:focus {
    outline: 0;
    border-color: var(--wp--preset--color--primary);
  }
}

textarea,
textarea.ff-el-form-control {
  font-weight: 400;
  line-height: 1.5;
}

select,
.fluentform select.ff-el-form-control {
  padding: 1.125rem 1.25rem !important;
  height: 60px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23000000'%3E%3Cpath d='M480-344 240-584l56-56 184 184 184-184 56 56-240 240Z'/%3E%3C/svg%3E");
}

input[type="submit"],
button[type="submit"],
.fluentform .ff-btn-submit[class] {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--black);
  border-radius: 10px;
  border: 1px solid var(--wp--preset--color--primary);
  padding: 1.125rem 1.25rem !important;
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--lato);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-duration) var(--transition-timing-function);
  height: 60px;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.fluentform .ff-btn-submit[class]:hover {
  background-color: var(--wp--preset--color--accent-one);
  border-color: var(--wp--preset--color--accent-one);
  color: var(--wp--preset--color--white);
}

label:not(.block-editor-block-inspector label),
.fluentform .ff-el-input--label label {
  color: var(--wp--preset--color--black);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

label a {
  text-decoration: underline;
}
