/* Input text */
#coupon_code {
  color: #000 !important;   /* black text when typing */
}

/* Placeholder text */
#coupon_code::placeholder {
  color: #000 !important;   /* black placeholder */
  opacity: 1;               /* make sure it’s not faded */
}

/* On focus */
#coupon_code:focus {
  color: #000 !important;   /* black text when focused */
}

/* On hover */
#coupon_code:hover::placeholder {
  color: #000 !important;   /* black placeholder on hover */
}


/* Just the £100.00 number */
#valueneeded {
  color: #000 !important;   /* black */
}

/* If you also want ALL the "Spend £100.00 more for FREE delivery" text black */
.getfreedelivery {
  color: #000 !important;   /* black */
}