/* Login exclusivo do Monitoramento LSP. O fundo permanece sem overlay ou transparência. */
.login-shell {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: var(--lsp-login-background, none);
  background-color: #e9eef5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(28px, 5vh, 58px) clamp(26px, 6vw, 94px);
  overflow: auto;
}

.login-panel {
  width: min(410px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(12px, 2vh, 22px);
}

.login-platform-logo {
  display: block;
  width: clamp(170px, 17vw, 245px);
  height: clamp(70px, 10vh, 105px);
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 8px 18px #ffffffb8);
}

.login-card {
  width: 100%;
  max-width: 410px;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 22px;
  padding: clamp(25px, 4vh, 38px);
  box-shadow: 0 24px 70px #0d234845, 0 4px 16px #0d234825;
}

.login-card h2 {
  margin: 20px 0 9px;
  color: #17233a;
  font-size: 29px;
  letter-spacing: -1px;
}

.login-card > p {
  line-height: 1.7;
}

.login-card label {
  margin: 21px 0;
  color: #52637c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.login-card input {
  min-height: 48px;
  padding: 13px 14px;
  border: 2px solid #dfe6ef;
  border-radius: 11px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.login-card input:hover {
  border-color: #c9d5e5;
}

.login-card input:focus {
  border-color: #4f83e6;
  box-shadow: 0 0 0 4px #2563eb12;
}

.login-submit {
  min-height: 49px;
  margin-top: 8px;
  padding-right: 18px;
  padding-left: 18px;
  border-radius: 11px;
  box-shadow: 0 10px 22px #2563eb45;
  font-size: 14px;
  font-weight: 800;
}

.login-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 27px #2563eb52;
}

.whatsapp-support {
  width: 100%;
  min-height: 45px;
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dfe6ef;
  border-radius: 11px;
  background: #fff;
  color: #4c5b70;
  font-size: 12px;
  font-weight: 700;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}

.whatsapp-support:hover {
  border-color: #86d7ae;
  background: #ecfdf5;
  color: #137a4c;
  transform: translateY(-1px);
}

.whatsapp-support img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.login-foot {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.login-foot span {
  font-size: 9px;
}

@media (max-width: 640px) {
  .login-shell {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 14px 24px;
    background-position: center;
  }

  .login-panel {
    width: min(370px, 100%);
    margin-left: auto;
    align-items: flex-end;
    gap: 10px;
  }

  .login-platform-logo {
    width: 150px;
    height: 68px;
  }

  .login-card {
    max-width: 370px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .login-card h2 {
    margin-top: 17px;
    font-size: 25px;
  }

  .login-card label {
    margin: 17px 0;
  }

  .login-card input {
    min-height: 45px;
  }

  .login-foot {
    margin-top: 20px;
  }
}
