@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  box-sizing: border-box;
}

body {
  display: grid;
  place-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: Roboto, sans-serif;
  background: linear-gradient(90deg, #7d5fff, #5158e2);
}

.search {
  display: flex;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
}

.input,
.btn {
  background-color: #fff;
  border: 0;
  &:focus {
    outline: none;
  }
}

.btn {
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #5158e2;
  cursor: pointer;
  .active & {
    transition-delay: 0s;
  }
}

.input {
  width: 0;
  padding: 0;
  font-size: 18px;
  transition: all 0.3s ease;
  .active & {
    width: 250px;
    padding-inline: 1rem;
  }
}
