/* contact.css — contact-page-specific styles (extracted from inline <style>
   in contact.html because the site CSP's style-src has no 'unsafe-inline').
   Extra styles for select, textarea, two-column row — matches auth.css palette. */

.auth-form-inner { max-width: 460px; }

.auth-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 560px) { .auth-field-row { grid-template-columns: 1fr; } }

.auth-input-wrap select,
.auth-input-wrap textarea {
    width: 100%;
    background: var(--panel);
    border: 1.5px solid var(--border-2);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.auth-input-wrap select {
    height: 48px;
    padding: 0 14px 0 44px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.auth-input-wrap textarea {
    padding: 12px 14px 12px 44px;
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}
.auth-input-wrap select:focus,
.auth-input-wrap textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34,211,238,.1);
}
.auth-input-wrap select option { background: #0f1d33; }

/* Success state */
.contact-success { display: none; }

/* Info rows inside brand panel */
.brand-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}
.brand-info-row i { color: var(--cyan); width: 14px; margin-top: 2px; flex-shrink: 0; }
.brand-info-row span { color: var(--muted); line-height: 1.5; }
.brand-info-row a { color: var(--cyan); }
