Can the text color of an input be set as a gradient? I came across this method for regular static text but it doesn't seem to work for inputs:
h1 {
font-size: 72px;
background: -webkit-linear-gradient(to right, rgb(66, 251, 227), rgb(43, 43,
255));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}