.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  border: 3px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.search-field:focus {
  outline: none;
  border-color: var(--bg-yellow);
}

.search-submit {
  border: 0;
  border-radius: 999px;
  background: var(--bg-red);
  color: var(--bg-white);
  padding: 0.75rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.search-submit:hover {
  background: var(--bg-orange);
}