*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
} 
body{
  width: 100vw;
  height: 100vh;
  display:flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg,rgb(65, 90, 106),black);
  color:white;
}
.container{
  /* border: 2px solid black; */
  padding: 28px 32px;
  background: transparent;
  flex-direction: column;
  border-radius: 20px; 
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.753);
}
.container h1{
  font-size: 1.4rem;
  margin-block: 8px;
  font-weight: 500;
  font-size: 30px;
}
.inputbox{
  position: relative;
}
.inputbox span{
  position: absolute;
  top: 15px;
  right: 2px;
  color: black;
  font-size: 35px;
  cursor: pointer;
}
.passbox{
  background: white;
  outline: none;
  border: none;
  border-radius: 5px;
  width: 300px;
  height: 50px;
  padding: 20px;
  font-size: 25px;
  margin-block: 8px;
}
.row{
  display: flex;
  margin-block: 8px;
}
.row p,label{
  width: 100%;
}
.row p{
  margin-top: 0px;
  font-size: 12px;
}
#slider_value{
  font-size: 12px;
}
.row input[type="checkbox"]{
  height: 20px;
  width: 20px;
  background: transparent;
}
.row input[type="checkbox"],label:hover{
  cursor: pointer;
}
input[type="range"]{
  width: 100%;
}
input[type="range"]:hover{
  cursor: pointer;

}
.btn{
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 10px;
  font-weight: 500;
  background-color: #306292;
  color: white;
  cursor: pointer;
  font-size: 25px;
}
.btn:hover{
  background-color: #5b86ae;
}
