#chs-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#chs-login-overlay.chs-hidden {
  display: none;
}

#chs-login-modal {
  background: #0f2841; /* azul de tu web */
  color: #ffffff;
  max-width: 420px;
  width: 92%;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  font-family: inherit;
}

#chs-login-modal h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

#chs-login-modal p {
  margin: 0 0 16px;
  color: #dbe8f5;
}

#chs-login-modal .chs-close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
}

#chs-login-modal .chs-field {
  margin-bottom: 12px;
}

#chs-login-modal label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

#chs-login-modal input[type="text"],
#chs-login-modal input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #2b4763;
  border-radius: 10px;
  background: #10324f;
  color: #fff;
}

#chs-login-modal .chs-actions {
  margin-top: 12px;
}

#chs-login-modal .chs-btn {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: #9C27B0;
  color: #fff;
  font-weight: 700;
}

#chs-login-modal .chs-btn:hover {
  background: #6A1B9A;
}

#chs-login-message {
  margin-top: 10px;
  min-height: 20px;
  font-size: 0.95rem;
}