input, select, textarea, .file-input {
    padding: 0.5rem 0;
    background: transparent;
    border-radius: 0;
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    margin-bottom: 1.5rem;
    color: inherit;

    &::placeholder {
        color: var(--black);
        opacity: 1; /* Firefox */
    }

    &::-ms-input-placeholder { /* Edge 12 -18 */
        color: var(--black);
    }

    &:focus {
        outline: 0;
    }
}

.bg-yellow {
  input, select, textarea, .file-input {
    border-color: var(--black);
  }
}

label {
    display: block;
    margin: 0;
    width: 100%;
    position: relative;
    font-size: var(--fs-xs);
    margin-bottom: 0.5rem;
}

.select {
  display: block;
  position: relative;

  select {
    appearance: none;
    width: 100%;

    &:hover {
      outline: 0;
    }

    &::-ms-expand {
      display: none;
    }
  }

  &:after {
    position: absolute;
    content:"";
    /* content: "\f078";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block; */
        border-top: 5.33px solid var(--black);
    border-right: 5.33px solid transparent;
    border-bottom: 0;
    border-left: 5.33px solid transparent;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

.filter-form {
  .select {
    min-width: 10em;

    select {
      background-color: var(--yellow);
      padding: 0.75rem 1rem;
      border-bottom: 0;
      font-variation-settings: var(--font-condensed);
      margin-bottom: 0;
    }
  }
}

.text-white {
    input, select, textarea, .file-input {
    &::placeholder {
        color: var(--white);
    }

    &::-ms-input-placeholder { /* Edge 12 -18 */
        color: var(--white);
    }                                        }
}

.captcha a {
    color: inherit;
    text-decoration: underline;
}
