.search {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  padding: 0 20px;
}

.search-box {
  margin-top: 2rem;
  width: 100%;
  max-width: 584px;
}

.search-box:hover {
  border-color: gray;
}

.search-input-container {
  position: relative;
  flex: 1;
}

.search-input-container label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: lightgray;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: -1;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.5rem;
  background: transparent;
  text-transform: lowercase;
}
