*{
    padding: 0%;
    margin: 0%;
}
body{
    background-repeat: no-repeat;
    background-size: cover;

}
label{
    color: black;
    /* font-weight: bold; */
}
.signup{
    margin-top: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color:#e3e7f1;
    border-radius: 10px;   
    padding:20px;
    padding-bottom: 5px;
    /* margin: 0; */
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -20%);
}
.signup p{
    padding-top:15px;
    font-size: 10px;
    text-align: center;
}
.login{
    width:300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color:#e3e7f1;
    border-radius: 10px;
    padding:20px;
    padding-bottom: 5px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hide{
display: none;

}
#message {
    /* display:none; */
    height: 390px;
     width: 300px;
    /* background: #f1f1f1; */
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
    
  }
  #message p {
    /* padding: 10px 35px; */
    font-size: 18px;
    text-align: left;
  }
  /* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
  }
  
  .valid:before {
    position: relative;
    left: -10px;
    content: "✔";
  }
  
  /* Add a red text color and an "x" when the requirements are wrong */
  .invalid {
    color: red;
  }
  
  .invalid:before {
    position: relative;
    left: -10px;
    content: "✖";
  }
  #strength{
    font-weight: bold;
  }
  .poor{
    height:2px;
    width: 25%;
    background-color:red ;
  }
  .medium{
    height:2px;
    width: 63%;
    background-color:orange ;
  }
  .strong{
    height:2px;
    width: 100%;
    background-color:green ;
  }
#myProgress{
  height:2px;
  /* width: 100%; */
    /* background-color: white; */
  }