/* login box styling */
.loginmain {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  overflow: auto;
  padding-top: 60px;
}
#loginCover {
  width: 30%;
  height: 300px;
  /* margin: auto; */
  position: absolute;
  right: 35%;
  margin-top: 100px;
  background-color: rgb(243, 241, 242);
  font-family: "Hind", sans-serif;
  padding: 30px;
}
h1 {
  font-weight: lighter;
  margin: 0px;
  margin-left: 10px;
}
input {
  width: 80%;
  height: 30px;
  border: none;
  margin-left: 20px;
  margin-top: 20px;
}
lable {
  text-align: left;
  margin-left: 20px;
  margin-top: 15px;
}
#button {
  margin-left: 5%;
  margin-top: 20px;
  height: 40px;
  width: 90%;
  font-size: 20px;
  background-color: #e40980;
  color: white;
  border: none;
  border-radius: 3px;
}
a {
  text-decoration: none;
  margin-left: 35%;
  color: #e40980;
}
.close {
  position: absolute;
  right: 33%;
  top: 110px;
  color: #000;
  font-size: 40px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
