/* استایل کلی فرم چندمرحله‌ای */
.cured-form-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.form-step.active-step {
    display: block;
}

.cured-form-container input[type="text"],
.cured-form-container input[type="email"],
.cured-form-container input[type="tel"],
.cured-form-container textarea,
.cured-form-container input[type="file"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.action-button, .action-button-previous {
    width: 100px;
    background: #0073aa;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.action-button-previous {
    background: #ccc;
    color: #333;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    padding: 0;
}

#progressbar li {
    list-style-type: none;
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    width: 33.33%;
    float: right;
    position: relative;
    text-align: center;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    line-height: 24px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #eee;
    border-radius: 50%;
    margin: 0 auto 5px auto;
}

#progressbar li.active:before,  #progressbar li.active:after{
    background: #0073aa;
    color: white;
}

.success-msg { color: green; font-weight: bold; margin: 10px 0;}
.error-msg { color: red; font-weight: bold; margin: 10px 0;}
