.search-form {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: #1E1E1E;
  display: flex;
  align-items: center;
}

.search-form input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 1rem;
  color: var(--color-black);
  /* line-height: same as .search-form-icon size */
  line-height: 1.5rem;
}

.search-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 .25rem 0 0;
}

.search-form .search-form-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-gray-medium);
  transition: color 0.2s ease;
}

.search-form:focus-within .search-form-icon {
  color: var(--color-primary-blue);
}
