.body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  padding: 30px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container {
            background: linear-gradient(145deg, #27293d, #1f2030);
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.8s;
box-shadow:
  2px 2px 5px rgba(23, 24, 36, 0.5),
  -2px -2px 5px rgba(58, 60, 90, 0.4);

            transition: box-shadow 0.4s ease;
  width: 400px;
}

.search-btn {
  background-color: none;
  border-radius: 50%;
  padding: 5px;
}
.search-container .search-input {
  background: transparent;
  border: none;
  outline: none;
  width: 400px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.8s;
}

.search-container .search-btn .fas {
  color: #5cbdbb;
}

@keyframes hoverShake {
  0% {
    transform: skew(0deg, 0deg);
  }
  25% {
    transform: skew(5deg, 5deg);
  }
  75% {
    transform: skew(-5deg, -5deg);
  }
  100% {
    transform: skew(0deg, 0deg);
  }
}

.search-container:hover {
  animation: hoverShake 0.15s linear 3;
}

@media only screen and (max-width: 400px) {
  .search-container {
    background: rgb(65, 62, 62);
    height: 50px;
    border-radius: 30px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.8s;
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3),
      -4px -4px 6px 0 rgba(116, 125, 136, 0.2),
      inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
      inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
    width: 340px;
  }
}