@media only screen and (max-width: 770px) {
  .login-dark {
    height: 100vh;
    background: #28140de8 url(../../static/img/figarologinportrait.png);
    background-size: contain;
    position: relative;
    background-color: #491602;
    /*background: #112244 url(../../static/img/figarologinportrait.png);*/
    /*background-blend-mode: luminosity;*/
  }
}

@media only screen and (min-width: 771px) {
  .login-dark {
    height: 100vh;
    background: #28140de8 url(../../static/img/figarologindesk.png);
    background-size: contain;
    position: relative;
    background-color: #491602;
    /*background: #112244 url(../../static/img/figarologindesk.png);*/
    /*background-blend-mode: luminosity;*/
  }
}

.login-dark:before {
  content: '';
  background:#5b2e018c;
  position:absolute;
  inset:0;
}

.login-dark form {
  max-width: 320px;
  width: 81%;
  background-color: rgba(30,20,16,0.70);
  /*background-color: rgba(30,40,51,0.75);
  background-color: rgba(82,54,44,0.75);*/
  padding: 40px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
}

.login-dark .illustration {
  text-align: center;
  padding: 15px 0 20px;
}

.illustration:before {
  content: "RMSS EVENT";
  color: white;
  font-size: clamp(1.5rem,5vw,2rem);
  display: block;
  margin-bottom:20px;
}

.login-dark form .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid #434a52;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

.login-dark form .btn-primary {
  margin: 10px 20px;
  /*background: #214a80;*/
  background: #52362c;
  box-shadow: none;
  border-color: #795548;
}

.login-dark form .btn-primary:hover, .login-dark form .btn-primary:active {
  /*background: #214a80;*/
  background: #52362c;
  outline: none;
}

.login-dark form .forgot {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #6f7a85;
  opacity: 0.9;
  text-decoration: none;
}

.login-dark form .forgot:hover, .login-dark form .forgot:active {
  opacity: 1;
  text-decoration: none;
}

.login-dark form .btn-primary:active {
  transform: translateY(1px);
}

.login-text {
  text-align: center;
  font-size: 0.6em;
  opacity: 0.5;
}

