
#container {
  margin: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  border-radius: 20px;
  box-shadow: 5px 5px 5px black;
  border: solid 5px rgb(250, 17, 250);
}
#username {
  width: 250px;
  border: solid rgb(250, 17, 250) 1px;
  border-radius: 5px;
  height: 25px;
  outline-color: rgb(250, 17, 250);
}

#pwd {
  width: 250px;
  border: solid rgb(250, 17, 250) 1px;
  border-radius: 5px;
  height: 25px;
  outline-color: rgb(250, 17, 250);
}
#togglePwd {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1em;
}
#rePwd {
  width: 250px;
  border: solid rgb(250, 17, 250) 1px;
  border-radius: 5px;
  height: 25px;
  outline-color: rgb(250, 17, 250);
}
#verify {
  background-color: green;
  color: white;
  border: none;
  width: 250px;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  font-weight: bold;
  margin: 20px 0px 20px 0px;
}
h1 {
  color: green;
}
h3 {
  color: rgb(250, 17, 250);
}
#verifyWar {
  color: red  ;
  text-align: center;
}
