/* Correção da composição da tela de acesso. */
.login-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0b0d11 !important;
}

.login-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13% 10% 13% auto;
  width: 2px;
  background: var(--gold);
  opacity: .7;
}

.login-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 13%;
  width: 20%;
  height: 2px;
  background: var(--gold);
  opacity: .7;
}
