/* ========================================================
   Form Agricole – Front-end styles
   ICT · https://ict.com.tn/ · Version 1.0.0
   ======================================================== */

.fa-wrapper {
    max-width:100%;
    font-family:inherit;
    background:#ffffff;          /* white panel */
    padding:28px;
    border-radius:10px;
    box-sizing:border-box;
}

/* Two-column rows, collapse on mobile */
.fa-row { display:flex; flex-wrap:wrap; gap:24px; }
.fa-row > .fa-field { flex:1 1 220px; }

.fa-field { margin-bottom:18px; }

.fa-field label {
    display:block;
    font-weight:700;
    margin-bottom:6px;
    color:#2b4a7e;               /* blue text */
    font-size:.9rem;
}

.fa-field input[type="text"],
.fa-field input[type="tel"],
.fa-field input[type="number"],
.fa-field textarea {
    width:100%;
    padding:12px 14px;
    border:1px solid #cbd2dc;
    border-radius:6px;
    box-sizing:border-box;
    line-height:1.5;
    color:#1f3a93;               /* blue input text */
    background:#fff;
    font-size:1rem;
    font-family:inherit;
    transition:border-color .2s, box-shadow .2s;
}

.fa-field input::placeholder,
.fa-field textarea::placeholder { color:#9aa3af; }

.fa-field input:focus,
.fa-field textarea:focus {
    border-color:#1f3a93;
    outline:none;
    box-shadow:0 0 0 2px rgba(31,58,147,.18);
}

.fa-field textarea { resize:vertical; min-height:120px; }

/* RTL */
.fa-wrapper[dir="rtl"] .fa-field label    { text-align:right; }
.fa-wrapper[dir="rtl"] .fa-field textarea { direction:rtl; text-align:right; }

.fa-reqmark { color:#c0392b; }

/* Submit button — full-width navy, matching the 2nd capture */
.fa-submit { margin-top:10px; }

.fa-btn-submit {
    width:100%;
    background:#1f3a93;
    color:#fff;
    border:none;
    padding:15px 24px;
    font-size:1.05rem;
    font-weight:700;
    border-radius:6px;
    cursor:pointer;
    font-family:inherit;
    transition:background .2s;
}

.fa-btn-submit:hover    { background:#16306f; }
.fa-btn-submit:disabled { background:#9aa3af; cursor:not-allowed; }

/* Messages */
.fa-messages { margin-top:16px; margin-bottom:0; }

.fa-messages.fa-success {
    background:#d4edda; color:#155724; border:1px solid #c3e6cb;
    padding:10px 14px; border-radius:6px;
}

.fa-messages.fa-error {
    background:#f8d7da; color:#721c24; border:1px solid #f5c6cb;
    padding:10px 14px; border-radius:6px;
}
