.search__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4em 0;
  background-color: #dadbf1;
}

.search__title {
  font-size: 1.6rem;
  font-weight: 500;
}

.search {
  display: flex;
  justify-content: center;
  border-radius: 8px;
}
.search:focus-within {
  box-shadow: 0 2px 4px gray;
}

.search__bar {
  flex-grow: 1;
  background-color: #fff;
  border: 1px solid #000;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 0.8em;
  font: inherit;
  width: 50vw;
}
.search__bar:focus {
  outline: none;
}

.search-btn {
  background-color: #fff;
  border: 1px solid #000;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 0 2em;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
}

.search-btn:hover {
  color: #b3acac;
}
