.submitLink {
  background-color: transparent; /* No background */
  border: none;                 /* No border */
  color: blue;                  /* Link color */
  text-decoration: underline;   /* Underline text */
  cursor: pointer;              /* Hand cursor on hover */
  padding: 0;                   /* Remove default padding/margin issues */
  /* Add hover effect for better user experience */
}

.submitLink:hover {
  color: lightblue; /* Change color on hover */
}

.submitLink:focus {
  outline: none; /* Optional: removes the outline when the button is focused */
}
