/* Buttons */
button,
input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  background-color: #0073e6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between icon and text */
  vertical-align: middle;
  line-height: 1;
}

button:hover,
input[type="submit"]:hover {
  background-color: #005bb5;
}

/* Form Labels */
label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}