#wsx-login-root > .titleIndex,
#wsx-login-root > .titulo,
#wsx-login-root > br {
  display: none !important;
}

#wsx-login-root .login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

#wsx-login-root .login-left {
  background: linear-gradient(135deg, var(--wsx-primary-dark) 0%, #003d7a 100%);
  color: #ffffff;
  padding: 60px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#wsx-login-root .login-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

#wsx-login-root .brand {
  width: 100%;
  max-width: 450px;
  text-align: left;
  position: relative;
  z-index: 1;
}

#wsx-login-root .brand > img {
  width: 250px;
  max-width: 100%;
  height: auto;
  margin: 0 0 20px;
}

#wsx-login-root .brand-text p {
  margin: 0 0 40px;
  max-width: 450px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.6;
}

#wsx-login-root .brand-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

#wsx-login-root .brand-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

#wsx-login-root .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

#wsx-login-root .login-right {
  background: var(--wsx-panel);
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wsx-login-root .login-right-inner,
#wsx-login-root .login-card,
#wsx-login-root .login-form,
#wsx-login-root .client-card,
#wsx-login-root .field,
#wsx-login-root .row,
#wsx-login-root .btn-primary,
#wsx-login-root .powered,
#wsx-login-root .login-footer-links,
#wsx-login-root .login-message {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

#wsx-login-root .login-header {
  text-align: center;
  margin-bottom: 40px;
}

#wsx-login-root .login-header > img {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 10px;
}

#wsx-login-root .login-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

#wsx-login-root .login-header p {
  margin: 0 0 24px;
  color: var(--wsx-muted);
  font-size: 14px;
}

#wsx-login-root .client-card {
  border: 1px solid var(--wsx-border);
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  min-height: 150px;
  text-align: center;
}

#wsx-login-root .client-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--wsx-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

#wsx-login-root .client-logo-slot {
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}

#wsx-login-root .client-logo-image {
  max-width: 180px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#wsx-login-root .client-sub {
  font-size: 12px;
  color: var(--wsx-muted);
}

#wsx-login-root .field {
  margin-bottom: 20px;
}

#wsx-login-root .field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#wsx-login-root .input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
}

#wsx-login-root .input::placeholder {
  color: #9ca3af;
  text-align: left;
}

#wsx-login-root .input:focus {
  outline: none;
  border-color: var(--wsx-primary);
  box-shadow: var(--wsx-focus);
}

#wsx-login-root .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 13px;
}

#wsx-login-root .remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wsx-text);
  font-weight: 500;
}

#wsx-login-root .remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--wsx-primary);
}

#wsx-login-root .forgot {
  color: var(--wsx-primary);
  text-decoration: none;
  font-weight: 600;
}

#wsx-login-root .forgot:hover {
  color: var(--wsx-primary-dark);
  text-decoration: underline;
}

#wsx-login-root .btn-primary {
  width: 100%;
  border: 0;
  border-radius: 9px;
  height: 42px;
  min-height: 42px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--wsx-primary) 0%, var(--wsx-primary-dark) 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
  margin-bottom: 24px;
}

#wsx-login-root .btn-primary:hover {
  filter: brightness(0.97);
}

#wsx-login-root .powered {
  text-align: center;
  color: var(--wsx-muted);
  font-size: 12px;
  margin-bottom: 16px;
}

#wsx-login-root .login-footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 14px;
}

#wsx-login-root .login-footer-links a {
  color: var(--wsx-primary);
  text-decoration: none;
  font-weight: 600;
}

#wsx-login-root .login-footer-links a:hover {
  color: var(--wsx-primary-dark);
  text-decoration: underline;
}

#wsx-login-root .login-message {
  display: none;
}

#wsx-login-root .login-message.is-visible {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid transparent;
}

#wsx-login-root .login-message-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 2px;
}

#wsx-login-root .login-message-content {
  color: #1f2937;
}

#wsx-login-root .login-message-content br {
  display: block;
  content: '';
  margin-top: 4px;
}

#wsx-login-root .login-message-content b,
#wsx-login-root .login-message-content strong {
  font-weight: 700;
}

#wsx-login-root .login-message-erro {
  background: #fff4f4;
  border-color: #f9caca;
}

#wsx-login-root .login-message-alerta {
  background: #fffbea;
  border-color: #f7e39b;
}

#wsx-login-root .login-message-bloqueio {
  background: #fef2f2;
  border-color: #f5b8b8;
}


@media (max-width: 1024px) {
  #wsx-login-root .login-layout {
    grid-template-columns: 1fr;
  }

  #wsx-login-root .login-left {
    min-height: 40vh;
    padding: 40px 30px;
  }

  #wsx-login-root .login-right {
    min-height: 60vh;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  #wsx-login-root .login-left {
    min-height: 35vh;
    padding: 40px 20px 30px;
  }

  #wsx-login-root .login-right {
    min-height: 65vh;
    padding: 30px 20px;
  }

  #wsx-login-root .login-header h2 {
    font-size: 24px;
  }

  #wsx-login-root .input {
    padding: 10px 12px;
    font-size: 13px;
  }
}
