@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dbb9b9;
}
body .search {
  position: relative;
  display: flex;
}
body .search input {
  border: none;
  background-color: #f3f3f3;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  font-size: 16px;
  transition: width 0.5s ease;
  border-radius: 15px;
  padding-left: 1rem;
}
body .search input:focus {
  outline: 0;
}
body .search button {
  border: none;
  background-color: #f3f3f3;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
  border-radius: 15px;
}
body .search button:focus {
  outline: 0;
}
body .search.searching input {
  border-radius: 15px 0 0 15px;
  width: 200px;
}
body .search.searching button {
  transform: translateX(180px);
  border-radius: 0 15px 15px 0;
}/*# sourceMappingURL=search.css.map */