.scr-wrapper{
    max-width:900px;
    margin:50px auto;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.scr-header{
    text-align:center;
    margin-bottom:40px;
}

.scr-header h1{
    font-size:34px;
    margin-bottom:10px;
    color:#0F4C81;
}

.scr-header p{
    color:#666;
}

.scr-step h3{
    margin-bottom:25px;
}

.scr-step input{
    width:100%;
    height:58px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 15px;
    font-size:15px;
}

.scr-progress{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
}

.scr-progress-item{
width:45px;
height:45px;
border-radius:50%;
background:#e5e7eb;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}

.scr-progress-item.active{
background:#0F4C81;
color:#fff;
}

.scr-step{
display:none;
}

.scr-step.active{
display:block;
}

.scr-nav{
display:flex;
justify-content:space-between;
margin-top:25px;
}

.scr-nav button,
.scr-next,
.scr-prev,
button[type="submit"]{

    background:#0F4C81;
    color:#FFFFFF !important;

    border:none;
    border-radius:12px;

    padding:14px 25px;

    cursor:pointer;

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.scr-nav button:hover,
.scr-next:hover,
.scr-prev:hover,
button[type="submit"]:hover{

    background:#0B3A63;
}

/* فیلدهای فرم */

.scr-step input,
.scr-step textarea,
.scr-step select{
    width:100%;
    padding:12px 15px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    margin-bottom:15px;
    font-family:inherit;
    box-sizing:border-box;
}

.scr-step textarea{
    min-height:120px;
    resize:vertical;
}

/* رادیو و چک باکس */

.scr-step label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
    font-size:14px;
}

.scr-step input[type="radio"],
.scr-step input[type="checkbox"]{
    width:auto !important;
    margin:0;
}

/* گروه گزینه ها */

.scr-options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:20px;
}

@media(max-width:768px){

    .scr-options{
        grid-template-columns:1fr;
    }

}