body
{
  background-size: cover;
  font-size: 0.9em;
}

.login-container
{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  height: 100vh;
}

.login
{
  background-color: white;
  padding: 70px;
  padding-bottom: 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
  align-items: center;
  box-sizing: border-box;
  margin: auto;
  margin-left: 10%;
}

.login-logo
{
  width: 150px;
  margin-bottom: 30px;
}

.login-header
{
  font-size: 1.5em;
  width: 100%;
  margin-bottom: 0px;
  font-weight: bold;
}

.login-sub
{
  line-height: 20px;
  margin-top: 10px;
  width: 100%;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  font-size: 0.9em;
}

.login-label
{
  line-height: 30px;
  margin-top: 10px;
  width: 100%;
  margin-top: 20px;
  display: block;
  font-size: 12px;
}

#id_username, #id_password, .login-input
{
  display: block;
  outline: none;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  border: none;
  background-color: rgba(43, 46, 64, 0.06);
  font-size: 16px;
}

.login-input:first-child
{
  margin-top: 0px;
}

.login-button
{
  width: 100%;
  margin-top: 30px;
  font-weight: bold;
}

.login-passwordlink
{
  display: block;
  line-height: 30px;
  margin-top: 10px;
  width: 100%;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  margin-top: 20px;
  text-align: center;
  text-decoration: underline;
}

.login-passwordlink:hover
{
  color: rgba(0, 0, 0, 1);
  opacity: 1;
}

.errorlist
{
  color: #c12f2f;
  padding: 0px;
}

.errorlist li
{
  display: block;
}


@media screen and (max-width: 1000px) {

  body
  {
    background-image: none;
    background-color: white;
    background-size: 0px;
  }

  .login-container
  {
    grid-template-columns: 1fr;
  }

  .login
  {
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    box-shadow: none;
  }

}
