.button {
  background-color: #ff6600;
  border-radius: 10px;
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: none;
  color: white;
}

.button:hover {
  background-color: #ff0000 !important;
  text-decoration: none;
  padding-right: 12px;
}

.fa-chevron-right {
  visibility: hidden;
  position: absolute;
  right: 30px;
  /*top: 11px;*/
  transition: all 0.5s;
  opacity: 0;
}

.button:hover .fa-chevron-right {
  visibility: visible;
  position: absolute;
  right: 15px;
  opacity: 1;
}