.login-box {
    width: auto;
    height: auto;
    background: #fff;
    color: #000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 52px 20px 25px;
}

.login-box h1 {
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-size: 22px;
}

.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
}

.login-box input {
  width: 100%;
  margin-bottom: 20px;
}

.login-box input[type="text"], .login-box input[type="password"], .login-box input[type="email"] {
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    outline: none;
    height: 40px;
    /*color: #ed3237;*/ 
    font-size: 16px;
}

.login-box input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    background: gray;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.login-box input[type="submit"]:hover {
    cursor: pointer;
    background: gray;
    color: #000;
}

.login-box a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: black;
}

.login-box a:hover {
  color: gray;
}

.login-box .img-fluid{
  top: -28px;
  height: 48px;
}

.login-box p{
  margin-bottom: -0.5rem;
}

#id_email, #id_username{
  text-transform: lowercase;
}

@media only screen and (max-width: 800px) {
  .login-box {
    width: 75%;
  }

  .login-box .img-fluid{
    height: 37px;
  }

}
