.highlight { background-color: yellow; }

.highlight-reglink { background-color: yellow; }

.reglink-button {
    width: 140px;
    height: 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background-color:#0c27f0 ;
    border: none;
    border-radius: 40px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-bottom: 15px;
    }
  
  .reglink-button:hover {
    background-color: #091cab;
    box-shadow: 0px 15px 20px #091cab;
    color: #fff;
    transform: translateY(-7px);
  }
  