.search-form {
  display: flex;
  width: 70%;
  padding: 0.25rem 0.125rem;
  border: none;
  margin-bottom: 0;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.search-form input {
  border: 1px solid var(--border-color);
  border-radius: 0.25em;
  margin-bottom: 0;
}

.search-form input[type='text'] {
  color: var(--first-dark-color);
  width: calc(100% - 0rem);
  height: 2rem;
}

.search-form input[type='submit'] {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../img/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  border: none;
  text-indent: -99999px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

@media (hover: none) and (pointer: coarse) {
  /* touch-screens */
  .search-form input[type='submit'] {
    /* background-color: var(--main-pastel-color-alt); */
    cursor: pointer;
  }
}

@media (hover: hover) and (pointer: fine) {
  /* mouse or touch-pad */
  .search-form input[type='submit']:hover {
    background-color: var(--second-light-color);
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) {
  .search-form {
    width: 60%;
  }
  .search-form input[type='submit'] {
    top: 0.45rem;
  }
}

@media screen and (min-width: 1024px) {
  .search-form {
    width: 50%;
  }
  .search-form input[type='submit'] {
    top: 0.5rem;
  }
}
