/* ============================
   فرم OTP — نسخه ریسپانسیو
============================ */

#mof-otp-form {
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    box-sizing: border-box;
}

/* ورودی‌ها */
#mof-otp-form input {
    font-family: var(--mfix-font);
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    direction: rtl;
    box-sizing: border-box;
}

/* دکمه‌ها */
#mof-otp-form button {
    font-family: var(--mfix-font);
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

#mof-otp-form button:hover {
    background: #005177;
}

/* فرم پروفایل */
#mof-profile-form input,
#mof-profile-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
}

/* ============================
   ریسپانسیو موبایل
============================ */
@media (max-width: 480px) {
    #mof-otp-form {
        padding: 15px;
        margin: 10px auto;
        border-radius: 8px;
    }

    #mof-otp-form input {
        font-size: 15px;
        padding: 10px;
    }

    #mof-otp-form button {
        font-size: 15px;
        padding: 10px;
    }
}

/* ============================
   ریسپانسیو تبلت
============================ */
@media (max-width: 768px) {
    #mof-otp-form {
        max-width: 90%;
    }
}
