/* login styling */

.site-main {
  width: 50%;
  max-width: 768px;
  min-width: 680px;
  padding: 3vh 3vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 5px;
  box-shadow: 0px 0px 25px rgba(0,0,0,0.5);
}
.site-main #loginform {
  display: block;
  padding-top: 75px;
}
.site-main #loginform:before {
  content: "Login";
  position: absolute;
  top: 0px;
  left: 12.5%;
  width: 75%;
  font-size: 36px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding: 10px 0px;
  margin-bottom: 15px;
}
.site-main #loginform p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.site-main #loginform p label {
  margin-right: 15%;
}
.developed-by {
  position: fixed;
  bottom: 0px;
  right: 0px;
  font-size: 14px;
  color: #333333;
}