/* محدود کردن به فرم */
.form-wrapper {
    font-family: 'Peyda', sans-serif;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 0;
}

.form-container {
    width: 380px;
    max-width: 100%;
    padding: 30px;
    border-radius: 10px;
    direction: rtl;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

/* Select Box */
.select-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 16px;
    background: #fff;
}

.select-box img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 8px;
}

.select-box select {
    border: none;
    font-family: 'Peyda' !important;
    background: transparent;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    width: 100%;
    appearance: none;
}

.select-box .arrow {
    position: absolute;
    left: 16px;
    font-size: 14px;
    color: #555;
    pointer-events: none;
}

.input-disabled {
    background: #f7f7f7;
    color: #aaa;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-yellow {
    background: #ffcb05;
    color: #000;
    margin-top: 8px;
}

.btn-outline {
    font-family: 'Peyda' !important;
    background: #fffbea;
    border: 1px solid #f0d76a;
    color: #333;
    margin-top: 8px;
}

.icon {
    width: 20px;
    margin-left: 8px;
}

/* ------------------------------ */
/*         نسخه موبایل            */
/* ------------------------------ */
@media (max-width: 480px) {

    .form-wrapper {
        padding: 20px 10px;
    }

    .form-container {
        width: 100%;
        padding: 22px 18px;
        border-radius: 12px;
    }

    label {
        font-size: 13px;
    }

    .select-box {
        padding: 7px 12px;
    }

    .select-box img {
        width: 18px;
        height: 18px;
    }

    .select-box select {
        font-size: 13px;
    }

    .select-box .arrow {
        left: 12px;
        font-size: 12px;
    }

    button {
        padding: 11px;
        font-size: 14px;
        border-radius: 9px;
    }

    .btn-outline,
    .btn-yellow {
        margin-top: 6px;
    }
}

/* ============================
   نسخه موبایل قطعی – 100%
   ============================ */
@media only screen and (max-width: 600px) {

    .form-wrapper {
        padding: 15px 10px !important;
        min-height: auto !important;
    }

    .form-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .form-group {
        margin-bottom: 14px !important;
    }

    .select-box {
        padding: 7px 12px !important;
        border-radius: 8px !important;
    }

    .select-box img {
        width: 18px !important;
        height: 18px !important;
        margin-left: 6px !important;
    }

    .select-box select {
        font-size: 13px !important;
        padding: 6px 4px !important;
    }

    .select-box .arrow {
        left: 10px !important;
        font-size: 12px !important;
    }

    button,
    .btn-yellow,
    .btn-outline {
        width: 100% !important;
        padding: 10px !important;
        border-radius: 9px !important;
        font-size: 14px !important;
        margin-top: 8px !important;
    }
}

