.search_btn{
  writing-mode: horizontal-tb;
  margin-left: 10;
}
.m{
  margin-left: 10;
}
.message{
  animation:message 3s linear;
  white-space:nowrap;
  overflow:hidden;
  animation-fill-mode: forwards;
  
}
@keyframes message {

  from {
  
  width:0%;
  }
  to{
    width: 100%;
  }
  
  }