.submit-button {
  background-color: #BC8DC8;
  color: #ffffff;
  border: 3px solid #BC8DC8;
  padding: 10px 20px; /* Padding inside the button */
  border-radius: 22px; /* Rounded corners */
  cursor: pointer; /* Change cursor on hover */
  font-size: 16px; /* Font size */
  transition: background-color 0.3s ease; /* Smooth transition on hover */
  font-family: 'Raleway', sans-serif;
}

.submit-button:hover {
  cursor: pointer;
  background-color: #A161B3;
  border: 3px solid #A161B3;
  box-shadow: 0 5px 10px -5px #888888;
}

.link-style-submit {
  background: none; /* Remove background color */
  border: none; /* Remove border */
  color: #BC8DC8; /* Set text color to blue, typical for links */
  text-decoration: underline; /* Add underline, typical for links */
  cursor: pointer; /* Change cursor to a pointer, indicating interactivity */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  font-family: inherit; /* Inherit font family from parent */
  font-size: inherit; /* Inherit font size from parent */
}

/* Optional: Add hover effect for better user experience */
.link-style-submit:hover {
  color: #A161B3; /* Change color on hover */
}


/*# sourceMappingURL=home.72dfd71db3064280bb34.css.map*/