.search-group {
  display: flex;
  align-items: center;
  height: 2rem;
}

.search-input {
  padding: 0 1rem;
  color: black;
  height: 100%;
  font-size: 15px;
  border: 1px solid #5e4dcd;
  border-radius: 6px 0 0 6px;
  background-color: transparent;
}

.button__submit {
  height: 100%;
  padding: 0 1em;
  border: none;
  border-radius: 0 6px 6px 0;
  background-color: #5e4dcd;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background-color .3s ease-in-out;
}

.button__submit:hover {
  background-color: #5e5dcd;
}

.search-input:focus, .search-input:focus-visible {
  border-color: #3898EC;
  outline: none;
}

