* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Inter", serif,sans-serif;
}
main{
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,rgb(18, 18, 85),rgba(23, 23, 230, 0.863));
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-widget{
  position: relative;
  height: 50px;
  /* background-color: red; */
}
input{
  font-family: "Inter";
  font-size: 18px;
  border: none;
  border-radius: 12px;
  height: 50px;
  width: 50px;
  transition: width .3s linear;
}
input:focus{
outline: none;
}
button{
  font-size: 18px;
  padding: 12px 8px;
  border: none;
  background: white;
  border-radius: 12px;
  position: absolute;
  left:0;
  top:0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  transition: transform .3s linear;

}
button:active{
  outline: none;
}
.search-widget.active input{
  width:350px;
  padding-left: 8px;
  padding-right: 50px;

}
.search-widget.active button{
  transform: translateX(300px);
}