body.lg-form {
  /* background-image: url(../images/login/supernova-background-2.png); */
  background-image: url(../images/login/stars.png), linear-gradient(#0A383C, #0E0E0E 50%);
  /* background-color: rgb(11, 57, 61); */
  /* background: linear-gradient(#0A383C, #0E0E0E 50%); */
  /* background: rgb(10,56,60); */
  /* background: radial-gradient(circle, rgba(10,56,60,1) 10%, rgba(14,14,14,1) 50%); */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: 'Roboto';
}
.wl {
  float: right;
  position: relative;
  right: 53px;
  font-style: italic;
  top: 45px;
  color: #ccc;
  font-size: 13px;
}

#captcha-refresh {
  z-index: 10;  
  position: absolute;  
  right: 23px;  
  margin-top: -22px;
  /* top: 170px; */
  max-height:19px;
}

.logins {
  background-image: url(../images/login/supernova-form-background-2.png);
  border-radius: 11px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
}

.form-rows {
  margin: 3px 0 8px 0;
}

.form-rows input[type="text"],
.form-rows input[type="password"] {
  background-color: #08231D;
  border: none;
  padding: 6px 10px;
  color: #fff;
  border-radius: 5px;
}

.labels {
  text-transform: capitalize;
  font-size: 12px;
  display: inline-block;
  width: 45px;
}

span:has(+ input:required):after {
  content: '*';
  color: red;
  padding: 2px;
}

.submit-button {
  display: block;
  margin: auto;
  padding: 9px 26px;
  border-radius: 6px;
  /* border: 1px solid #6CFACC; */
  color: rgb(0, 81, 107);
  background: linear-gradient(#46B7AB, #119ACC);

}

.submit-button:active {
  display: block;
  margin: auto;
  padding: 9px 26px;
  border-radius: 6px;
  border: 1px solid #9162d2;
  color: #fff;
  background: rgba(103,60,196,1);
  background: -moz-linear-gradient(top, rgba(103,60,196,1) 0%, rgba(77,31,157,1) 50%, rgba(60,9,130,1) 51%, rgba(139,77,221,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(103,60,196,1)), color-stop(50%, rgba(77,31,157,1)), color-stop(51%, rgba(60,9,130,1)), color-stop(100%, rgba(139,77,221,1)));
  background: -webkit-linear-gradient(top, rgba(103,60,196,1) 0%, rgba(77,31,157,1) 50%, rgba(60,9,130,1) 51%, rgba(139,77,221,1) 100%);
  background: -o-linear-gradient(top, rgba(103,60,196,1) 0%, rgba(77,31,157,1) 50%, rgba(60,9,130,1) 51%, rgba(139,77,221,1) 100%);
  background: -ms-linear-gradient(top, rgba(103,60,196,1) 0%, rgba(77,31,157,1) 50%, rgba(60,9,130,1) 51%, rgba(139,77,221,1) 100%);
  background: linear-gradient(to bottom, rgba(103,60,196,1) 0%, rgba(77,31,157,1) 50%, rgba(60,9,130,1) 51%, rgba(139,77,221,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#673cc4', endColorstr='#8b4ddd', GradientType=0 );
}

.forgot-link {
  color: #fff !important;
}

/* Optimasi Responsive untuk Browser Minimized / Layar Kecil */
@media (max-width: 768px) {
  .app .center-block {
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .logins {
    width: 100%;
    box-sizing: border-box;
    padding: 20px !important;
  }
  .form-rows {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
  }
  .labels {
    width: 100% !important;
    display: block;
    margin-bottom: 6px;
  }
  .form-rows input[type="text"],
  .form-rows input[type="password"] {
    width: 100%;
    box-sizing: border-box;
  }
  #captcha-refresh {
    position: absolute;
    right: 5px;
    margin-top: -30px;
  }
  #captcha-login {
    max-width: 100%;
    height: auto;
    margin-top: 5px;
    display: block;
  }
  .submit-button {
    width: 100%;
    margin-top: 15px;
  }
}