
body {
  margin: 0%;
  padding: 0%;
  font-family: "Raleway", sans-serif;
  line-height: 1-3;
  display:flex;
  flex-direction:column;
  overflow-y:scroll !important;
}

.error-box{
  width: 800px;
  margin: -20px auto 20px auto;
  text-align: center;
}
.error-box p{
  color: red;
  font-weight: bold;
  font-size: 20px;
}

.loginbox {
  width: 350px;
  padding: 10px 10px;
  margin: 25px auto 60px auto;
  position:relative;
  background: #345ec7;
  text-align: center;
}
.loginbox h1 {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}
.loginbox input[type="text"],
.loginbox input[type="password"],
.loginbox input[type="email"] {
  border: 0;
  background: white;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #345ec7;
  padding: 14px 10px;
  width: 200px;
  outline: none;
  color: gray;
  border-radius: 24px;
  transition: 0.25s;
}
.loginbox input[type="text"]:focus,
.loginbox input[type="password"]:focus,
.loginbox input[type="email"]:focus {
  width: 280px;
}
.loginbox input[type="submit"] {
  border: 0;
  background: rgb(79, 163, 84);
  display: block;
  margin: 20px auto;
  text-align: center;
  padding: 14px 40px;
  outline: none;
  color: white;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer;
}
.loginbox input[type="submit"]:hover {
  background: rgb(88, 187, 88);
}
.loginbox .content{
  font-size: 20px;
  margin: 10px;
  color: white;
}
.loginbox .login-title{
  font-weight: bolder;
  font-size: 25px
}
