.container {
  position: absolute;
  top: -100%;
  height: 100%;
  width: 100%;
  padding: 0px 30px 0px 30px;
  background-color: var(--blur-color);
  backdrop-filter: blur(6px);
  box-shadow: none;
  transition: all 0.15s ease-in;
  display: flex;
  align-items: center;
}

.container.active {
  box-shadow: rgb(0 0 0 / 16%) 0px 8px 16px 0px;
  top: 0px;
}

.input {
  flex: 1;
  margin: 0px 20px 0px 5px;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 16px;
}
