body{
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  background-color:#00092c;
} 
  
.search-bar-container{
  display: flex;
  align-items: center;
  background-color: white;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0, 0.2), 
             -6px -6px 10px rgba(20, 19, 19, 0.7);
  border-radius: 50px;
  width: 300px;
  height: 50px;
  margin: 10px;
  position: relative;
  transition: width 0.5s;
}
.magnifier{
  width: 25px;
  cursor: pointer;
  position: absolute;
  left: 20px;
}

.mic-icon{
  width: 30px;
  position: absolute;
  right: 20px;
  transition: width .4s;
  transition-delay: 0.5s;
}

.input{
  background-color: transparent;
  border: none;
  margin: 10px 50px;
  width: 100%;
  outline: none;
  color: rgb(100, 100, 100);
  transition: width 1s;
  transition-delay: 0.5s;
}

.active.search-bar-container {
  width: 50px;
}
.active .input{
  width: 0;
}
.active .mic-icon{
  width: 0;
}
