One or more of the items in your cart is a recurring or deferred purchase. By continuing, I agree to the cancellation policy and authorize you to charge my payment method at the prices, frequency and dates listed on this page until my order is fulfilled or I cancel, if permitted.
/* Target the email input field */
input[type="email"] {
color: #000000 !important; /* Set text color to black */
background-color: #ffffff !important; /* Set background to white */
caret-color: #000000 !important; /* Set cursor color to black */
}
/* Ensure placeholder text is also black */
input[type="email"]::placeholder {
color: #000000 !important;
}
/* Ensure that the text remains black when the input field is focused */
input[type="email"]:focus {
color: #000000 !important;
background-color: #ffffff !important;
caret-color: #000000 !important; /* Set cursor color to black when typing */
}