#openModal {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}







.modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 9999;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;
}


/* وقتی پنجره باز است */
.modal.active {
    display: flex;
}


/* خود پنجره */
.modal-box {
    position: relative;

    width: 400px;
    max-width: 100%;

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    box-sizing: border-box;
}

.scroll-box {
    width: 300px;
    height: 200px;

    overflow-y: auto;

    border: 1px solid #ccc;
    padding: 10px;
}

/* دکمه × */
.modal-close {
    position: absolute;

    top: 10px;
    right: 12px;



    border: none;
    background: transparent;



    color: white;
    background-color: red;
    cursor: pointer;
}




/* فرم */
.modal-box form {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}
































/* input */
.modal-box input {
    width: 100%;

    padding: 11px;

    border: 1px solid #ccc;
    border-radius: 7px;

    box-sizing: border-box;
}


/* دکمه ارسال */
.btn-form {
    padding: 11px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}