/* ریست اولیه */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}



/* کانتینر فرم */
#step-1, #step-2, #step-3, #step-4 {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    margin:auto;
    margin-top:100px;
}

/* تیتر */
h2, h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

/* input و select */
input, select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border 0.2s ease;
    font-family:iransans;
    text-align:center;
}

input[type="text"]:focus, select:focus {
    border-color: #4a90e2;
    outline: none;
}

/* دکمه‌ها */
button {
    background-color: #4a90e2;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #357abd;
}

/* کارت پیش‌نمایش */
#cardPreview {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    background-color: #fafafa;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* مخفی کردن مراحل */
#step-2, #step-3, #step-4 {
    display: none;
}

/* responsive موبایل */
@media (max-width: 480px) {
    #step-1, #step-2, #step-3, #step-4 {
        padding: 20px 15px;
    }
    input[type="text"], select, button {
        font-size: 15px;
        padding: 10px 12px;
    }
}
