<style>
.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #0088CC; /* Change the border color to #0088CC */
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus {
  color: #0088CC; /* Change the focus color to #0088CC */
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #0088CC; /* Change the border color to #0088CC */
  background: #0088CC; /* Change the background color to #0088CC */
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.wrap {
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
</style>

