*{
  margin: 0px;
  padding: 0px;
}
body{
  background-color: #61d954;
  font-family: "Poppins",sans-serif;
}
.container{
  height:150px;
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  padding: 35px 25px;
  width:auto;
  border-radius:8px;
}
.main{
  display:block;
}
.btn{
  display: flex;

}
#textinput{
  width:200px;
  height:35px;
  font-size:15px;
  outline:none;
  border:none;
  border-radius:5px 0px 0px 0px;
  padding:5px 20px;
  background-color: #f5f5f5;
  color:#333;
}
#showbtn{
  width:25px;
  height:45px;
  color:#808080;
  outline:none;
  border:none;
  border-radius:0px 5px 0px 0px;
  padding:5px;
  background-color: #f5f5f5;
}
#progressBarDiv{
  width:265px;
  height: 10px;
  background-color:#ccc;
  border-radius:0px 0px 5px 5px;
}
#progressBar{
  width:0px;
  height: 10px;
  border-radius:0px 0px 5px 5px;
  background-color:blue;
  color: red;
}
#warning{
  width:265px;
  height:25px;
  color: #707070;
  margin-top:20px;
  text-align: center;
  font-weight: 400;
}
span{
  color:#ccc;
}
