/*-------------------------- SEARCH --------------------------*/

/*--- SEARCH BOX WRAPPER INCLUDES INPUT AND BUTTON ---*/
.search__box {
  position: relative;
}

/*--- INPUT FIELD FOR SEARCH ---*/
input[type="text"].search__input {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-text);
  padding: 1rem 4rem 1rem 2rem;
  background-color: transparent;
  border: 2px solid var(--border-grey-light);
  border-radius: 0.4rem;
  width: 30rem;
  height: 4.8rem;
  position: relative;
}

input[type="text"].search__input:hover,
input[type="text"].search__input:focus {
  border: 2px solid var(--color-secondary);
}

/*--- SEARCH BUTTON ---*/
.btn--search {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  padding: 0;

  display: flex;
  align-items: center;
}

/*-------------------------- SEARCH --------------------------*/
