.mt5-id-prompt-backdrop {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(6px);
}

.mt5-id-prompt-backdrop.hidden {
  display: none;
}

.mt5-id-prompt-panel {
  width: min(100%, 28rem);
  border-radius: 1rem;
  border: 1px solid rgba(0, 210, 255, 0.25);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
}

.mt5-id-prompt-panel h2 {
  margin: 0.35rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
}

.mt5-id-prompt-panel p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #94a3b8;
}

.mt5-id-prompt-fields {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.mt5-id-prompt-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mt5-id-prompt-field input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(100, 116, 139, 0.45);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.65rem 0.75rem;
  font-size: 0.9375rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #f8fafc;
}

.mt5-id-prompt-field input:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.15);
}

.mt5-id-prompt-message {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.mt5-id-prompt-message.is-error {
  color: #f87171;
}

.mt5-id-prompt-message.is-success {
  color: #34d399;
}

.mt5-id-prompt-submit {
  margin-top: 1.25rem;
  width: 100%;
}

.mt5-id-prompt-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
