/* Center the entire form */
#searchForm.wp-search-form {
  width: 100%;           /* allow it to shrink on small screens */
  max-width: 1200px;      /* cap its width on larger screens */
  margin: 0 auto;        /* center it horizontally */
  padding: 8px 12px;
  box-sizing: border-box;
}

#searchForm.wp-search-form label{
	font-weight: bold;
}

/* Center just the input/button wrapper, if you prefer */
#searchForm .search-field {
  position: relative;
  width: 100%;
  max-width: 1200px;     /* match your form’s max-width */
  margin: 0.5em auto;   /* top/bottom = 0.5em, left/right = auto */
}

/* (rest of your existing CSS…) */
#searchForm .search-field input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 100px 12px 12px;
  border: 2px solid #999;
  border-radius: 7px;
  font-family: inherit;
  font-size: 1.2rem;
}

#searchForm .search-field input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding: 8px 16px;
  background-color: #006aff;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color .2s ease;
}

#searchForm .search-field input[type="submit"]:hover {
  background-color: #3B538E;
}

