body {
  width: 100vw;
  height: 100vh;
}

/* login content */
#login-content {
  height: 100vh;
}
#login-content .login-left {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  margin-left: 8.3333333333%;
}
@media (min-width: 768px) {
  #login-content .login-left {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 4.1666666667%;
  }
}
@media (min-width: 992px) {
  #login-content .login-left {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 8.3333333333%;
  }
}
#login-content label {
  /*margin-top: 24px;*/
}
#login-content form.row {
  background-color: #F7F8FD;
  padding: 32px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
  max-width: 500px;
  /* stops bg color from leaking outside the border: */
}
#login-content form.row #id_username,
#login-content form.row #id_password {
  background-color: #ffffff !important;
  border: 1px solid #CACEE9;
}
#login-content form.row h1 {
  margin-bottom: 0;
  padding: 0;
}
#login-content form h1 a {
  display: block;
  padding: 8px 0 16px 0;
}
#login-content form.row h1 a > * {
  -moz-transition: all ease-in-out 0.8s;
  -o-transition: all ease-in-out 0.8s;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
#login-content form.row h1 a .logo-normal {
  width: 300px;
  margin-bottom: 16px;
}
#login-content form {
  padding: 32px;
}
#login-content form .error {
  border: 2px solid #DF0080;
  background: #DF0080;
  /* The Fallback */
  background: rgba(223, 0, 128, 0.1);
}

#login-content #error-message {
  border: 2px solid #DF0080;
  color: #DF0080;
  margin-bottom: 16px;
  padding: 16px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #DF0080;
  /* The Fallback */
  background: rgba(223, 0, 128, 0.05);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

#login-content #error-message ul {
  margin-bottom: 0;
  padding-left: 20px;
}

#login-content .btn {
  font-family: Mulish, sans-serif;
  font-style: normal;
  font-size: 14px;
  min-height: 48px;
  height: auto;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  max-width: 30%;
  flex-basis: 30%;
}

#login-content .btn-primary {
  background-color: #7653F3;
  border-color: #7653F3;
}

#login-content .btn-primary:hover,
#login-content .btn-primary:focus {
  background-color: #6745d5;
  border-color: #6745d5;
}

#login-content .btn-login {
  font-weight: 800;
}

#login-content .login-submit-col {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin: 15px 0 0;
  justify-content: space-between;
}

#image-placeholder {
  background-attachment: fixed;
  background-image: url("../images/illustrations.svg");
  background-position: right 10% center;
  background-repeat: no-repeat no-repeat;
  background-size: 40%;
}