.wizard-container{

    max-width:650px;

    margin:40px auto;

    background:#fff;

    padding:40px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.wizard-header{

    text-align:center;

    margin-bottom:30px;

}

.progress-bar{

    width:100%;

    height:8px;

    background:#ddd;

    border-radius:20px;

    overflow:hidden;

    margin-bottom:10px;

}

#progress-fill{

    width:20%;

    height:100%;

    background:#0056b3;

    transition:.3s;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:bold;

}

.form-group input{

    width:100%;

    padding:14px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}

.wizard-buttons{

    margin-top:30px;

    text-align:right;

}

.next-btn{

    background:#0056b3;

    color:white;

    border:none;

    padding:14px 30px;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

}

.next-btn:hover{

    background:#00408c;

}

.wizard-step{

    display:none;

}

.wizard-step.active{

    display:block;

}


select,
textarea{

    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;

}

.prev-btn{

    background:#777;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;

}

.submit-btn{

    background:#28a745;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;

}