.floran-form{
    max-width:600px;
    margin:auto;
    background:#f5f9fd;
    padding:30px;
    border-radius:12px;
    font-family:'Tahoma','IRANSans',sans-serif;
    box-shadow:0 8px 24px rgba(0,0,0,0.1);
    color:#1f2937;
}

.floran-form h1{
    text-align:center;
    color:#6BAED6;
    margin-bottom:30px;
}

/* هر ردیف فرم به صورت تک ستون */
.form-row{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

/* برچسب‌ها بالای فیلدها */
.form-row label{
    font-weight:500;
    margin-bottom:6px;
}

/* تمام input و textareaها یکسان */
.form-row input,
.form-row textarea,
.form-row select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    box-sizing:border-box;
    min-height:40px;
}

/* فوکوس */
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus{
    border-color:#6BAED6;
    outline:none;
    box-shadow:0 0 5px rgba(107,174,214,0.5);
}

/* پیام خطا زیر فیلد */
.error-msg{
    color:red;
    font-size:13px;
    margin-top:4px;
}

/* دکمه ارسال */
button{
    width:100%;
    padding:14px;
    background:#6BAED6;
    color:#fff;
    font-size:16px;
    font-weight:600;
    border:none;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:#5b9cc3;
}

/* لیست فایل‌ها */
#fileList{
    list-style:none;
    margin:5px 0 0 0;
    padding:0;
}

/* آیکون و label فایل */
.file-row label{
    display:flex;
    align-items:center;
    gap:6px;
    font-weight:500;
}

/* کپچا */
.captcha-row input{
    width:100%;
}

/* ریسپانسیو */
@media(max-width:600px){
    .floran-form{
        padding:20px;
    }
}
