x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
input {
5
    caret-color: orange;
6
    color: white;
7
    background: black;
8
    font-size: 7vw;
9
    padding: 3vw;
10
    animation: myAnimation 10s infinite;
11
}
12
@keyframes myAnimation {
13
  50% {
14
    caret-color: limegreen;
15
  } 
16
}
17
</style>
18
19
<input autofocus placeholder="Name">