/* ===================================================================
   contact.css — فقط برای contact/index.php
   نکته: کلاس‌های field-input / field-label / contact-pill قبلاً استفاده
   می‌شدند ولی هیچ استایلی براشون تعریف نشده بود (فرم بدون قالب نمایش
   داده می‌شد). این فایل اون‌ها رو اضافه می‌کند.
   =================================================================== */

.contact-pill {
    border-radius: 9999px;
    background-color: rgba(15, 118, 110, 0.05);
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.field-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.field-input {
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    background-color: #f8fafc;
    font-size: 0.9rem;
    color: #1e293b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-input:focus {
    outline: none;
    border-color: #22d3ee;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.field-input::placeholder {
    color: #94a3b8;
}
