.btnEntrarCurso {
    background-image: linear-gradient(to right, #283048 0%, #859398  51%, #283048  100%);
    text-align: center;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnEntrarCurso:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
  }