.indexTitle {
  background-color: purple;
  color: #DADCE0;
}
.bodyHtml {
  background-color: white; 
  color: black; 
  font-family: Verdana;
}
.box {
  display: block;
  border: 3px solid #a020f0;
  padding: 20px; 
  margin: 20px;
  box-shadow: 5px 5px 1px #8ca6f2;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0; 
  overflow: hidden;
  position: sticky; 
  top: 0;
}
ul li {
  float: left;
}
ul li a {
  display: block;
  color: purple;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
ul li a:hover:not(.active) {
  background-color: white;
}
ul li .active {
  background-color: #04AA6D;
}
.headerTitle {
  background-color: purple;
  font-family: "lato", sans-serif;
  color: white;
}
body{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #DADCE0;
  font-family: "lato", sans-serif;
}
.loginFrm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.form {
  background-color: white;
  width: 400px;
  border-radius: 8px;
  padding: 20px 40px;
  box-shadow: 0 10px 25px rgba(92, 99, 105, .2);
}
.title {
  font-size: 50px;
  margin-bottom: 50px;
}
.inputContainer {
  position: relative;
  height: 45px;
  width: 90%;
  margin-bottom: 17px;
}
.input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid #DADCE0;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 20px;
  outline: none;
  background: none;
  z-index: 1;
}
::placeholder {
  color: transparent;
}
.label {
position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  background-color: white;
  color: #DADCE0;
  font-size: 16px;
  transition: 0.5s;
  z-index: 0;
}
.loginBtn {
  display: block;
  margin-left: auto;
  padding: 15px 30px;
  border: none;
  background-color: purple;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
}
.loginBtn:hover {
  background-color: #9867C5;
  transform: translateY(-2px);
}
.input:focus + .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: purple;
}
.input:focus {
  border: 2px solid purple;
}
.input:not(:placeholder-shown)+ .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
}