.get-tickets button,
.get-tickets a {
font-size: 0;
}

.get-tickets button:before,
.get-tickets a:before {
font-size: 14px;
content: 'Register Here';
}
/* Target the button specifically using its class */
.get-tickets .button {
 padding: 20px 50px; /* Increase padding for larger size */
    border-radius: 9px;  /* Slightly rounded corners */
    background-color: #008295; /* Example color, customize as needed */
    color: white;       /* Ensure text is readable */
    border: none;       /* Remove default border */
    cursor: pointer;   /* Indicate it's clickable */
    transition: transform 0.2s ease; /* Add a smooth scale effect on hover */
}