How can I removed the underline on the “Become a member” button



text-decoration: none;

You will want to add this to your .red-btn ruleset

What you can do for the button is:

.red-btn {
  text-decoration: none;
}

/* For Removing the Link Color if the Page or Link is Visited */
.red-btn:visited {
  color: blue;
}