body {
  background-color: #222225;
}

.login {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.login-content {
  max-width: 560px;
}

.login-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  color: #A85DDE;
  margin-bottom: 5px;
}

.login-content > p {
  color: #717179;
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
}

.login-content > hr {
  border: none;
  height: 2px;
  opacity: 0.2;
  background-color: #3E3E43;
  margin: 28px 0;
}

.login-content .form-group {
  margin-bottom: 28px;
}

.login-content .form-group label {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.login-content .form-group input {
  background-color: #FFFFFF;
  border: 1px solid #c9cae8;
  border-radius: 6px;
  height: 38px;
  width: 100%;
  padding-left: 14px;
}

.login-content .form-group .digbutton-purple {
  max-width: 100%;
  width: 100%;
  border: none;
  display: block;
  background-color: #522676;
}

.password-reset {
  color: #A85DDE;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  margin: 17px 0 0 auto;
  display: block;
  max-width: fit-content;
  text-align: right;
}

.login-register {
  margin-top: 45px;
  font-weight: 600;
  color: #717179;
  text-align: center;
  display: block;
}

.login-register a {
  text-decoration: none;
  color: #A85DDE;
  font-weight: 600;
  font-size: 16px;
}

.background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  background-image: url('../../../img/login_bg.jpg');
  background-size: contain;
  background-position: -190px;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 1400px) {
  .background {
    left: 55%;
  }
}

@media (max-width: 1200px) {
  .background {
    display: none;
  } 

  .login-content {
    max-width: 100%;
  }
}

