.pbSubmit {
  background-color: #FF6210; /* Button background */
  color: white;              /* Button text color */
  padding: 20px 24px;         /* Spacing inside button */
  font-size: 18px;           /* Text size */
  border: none;               /* Remove border */
  border-radius: 6px;         /* Rounded corners */
  cursor: pointer;            /* Cursor on hover */
  transition: background-color 0.3s ease;
}

input.pbSubmit:hover {
  background-color: #4CAF50;
  color: white;
}
