body{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  height: 100vh;
  background-color: lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}
form{
  text-align: left;
  padding: 50px;
  background-color: white;
  height: auto;
  border-radius: 10px;
}

input{
  width: 100%;
}
#errorMessage{
  padding: 0px;
  margin: 5px 0px;
}
#errorMessage p{
  color: Coral;
  padding: 0px;
  margin: 0px;
  height: 10px;
}
#errorMessage h1{
  text-align: center;
  color: Green;
  padding: 0px;
  margin: 0px;
  height: 20px;
}
#validateButton{
  text-align: center;
  width: 50%;
  margin: 25px 0px 25px 80px;
  background-color: lightgreen;
  padding: 10px 0px;;
  border: none;
}
.PasswordHead{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px 50px;
  background-color: lightblue;
  position: relative;
  right: 50px;
  bottom: 50px;
  border-radius: 10px 10px 0px 0px;
}
.rulesText{
  font-size: 18px;
}
ul{
  line-height: 24px;
  padding: 0px 0px 0px 20px;
}
