input {
border: 3px solid green;
border-radius: 5px;
animation: tre 3s infinite ease-in-out alternate;
}
@keyframes tre {
0% {
border-radius: 5px;
background-color: aliceblue;

}
30%{
background-color: rgb(193, 255, 169);


}
60% {
background-color: rgb(164, 206, 244);


}

100% {
border-radius: 40%;
background-color: rgb(102, 0, 255);

}

}
label {
    background-color: antiquewhite;
    border: 3px solid rgb(245, 180, 180);
}
