Плавное появление я сделал, а вот исчезновение...
form {
position: relative;
width: 100%;
margin: 0 auto;
background-color: #ECEFF1;
}
input, button {
outline: none;
background: transparent;
}
input {
width: 100%;
height: 32px;
padding-left: 10px;
border: 1px solid #ECEFF1;
}
button {
border: none;
height: 32px;
width: 32px;
position: absolute;
top: 0;
right: 0;
cursor: pointer;
}
button:before {
content: "\f002";
font-family: FontAwesome;
font-size: 16px;
color: #111111;
}
input:focus {
border-color: #111111;
transition: border 0.7s ease-out;
}