/* sell-form.css — used on the /sell/ route only */
.pm-sell-form {
  max-width: 620px;
  margin: 0 auto;
}
.pm-sell-form h2 {
  margin: 0 0 6px;
}
.pm-sell-form__sub {
  color: var(--pm-muted);
  margin: 0 0 20px;
}
.pm-sell-form form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-sell-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pm-sell-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pm-text);
  margin-top: 10px;
}
.pm-sell-form input,
.pm-sell-form select,
.pm-sell-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  font-family: inherit;
  font-size: 0.95rem;
}
.pm-sell-form__note {
  color: var(--pm-muted);
  font-size: 0.82rem;
  margin: 10px 0 0;
}
.pm-sell-form__hint {
  color: var(--pm-muted);
  font-size: 0.8rem;
}
.pm-sell-form button {
  margin-top: 16px;
  background: var(--pm-navy, #142057);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--pm-radius);
  font-size: 1rem;
  cursor: pointer;
}
.pm-sell-form__error {
  background: #fdeaea;
  color: #a33;
  padding: 12px;
  border-radius: var(--pm-radius);
}
.pm-sell-form__success {
  background: #e8f7ee;
  color: #1c7a3f;
  padding: 16px;
  border-radius: var(--pm-radius);
}
.pm-sell-form__gate {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
}
.pm-sell-form__cta {
  display: inline-block;
  margin-top: 12px;
  background: var(--pm-navy, #142057);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--pm-radius);
  text-decoration: none;
}
.pm-sell-form__switch {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--pm-muted);
}
@media (max-width: 600px) {
  .pm-sell-form__row { grid-template-columns: 1fr; }
}
