/* ============================================================
   support.css — page-specific styles for the customer Support
   Center (support.html). Shared chat/card/compose components
   live in support-shared.css.
   ============================================================ */

.support-shell {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-verify {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.support-verify::before {
  content: "\f590";
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(245, 161, 90, 0.14);
  color: var(--sp-accent-dark);
  font-family: "Font Awesome 6 Free";
  font-size: 1.3rem;
  font-weight: 900;
}

.support-form {
  display: flex;
  gap: 10px;
}

.support-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  text-align: center;
  letter-spacing: 0.12em;
  border: 1px solid var(--sp-border);
  border-radius: 10px;
  background: var(--sp-bg);
  color: var(--sp-text);
  font: inherit;
}

.support-form input:focus {
  outline: none;
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(245, 161, 90, 0.18);
}

.support-chat { display: none; }

/* This page's status line is always visible (unlike the contact form's
   .form-status, which relies on a .show toggle) */
.support-shell .form-status {
  display: block;
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 0.84rem;
}

@media (max-width: 600px) {
  .support-form { flex-direction: column; align-items: stretch; }
  .support-form button { width: 100%; }
}

