/* Houd contactvelden leesbaar, ook bij dark mode en browser-autofill. */
.contact-form input:not([type="hidden"]),
.contact-form textarea {
    background: #ffffff !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    caret-color: #111111 !important;
    color-scheme: light !important;
    opacity: 1 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777777 !important;
    -webkit-text-fill-color: #777777 !important;
    opacity: 1 !important;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill {
    -webkit-text-fill-color: #111111 !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    caret-color: #111111 !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff !important;
    color: #111111 !important;
}
