/* =====================================================
   WorkForYou by CRK GROUP
   Registration Wizard Styles
===================================================== */

:root{
    --primary:#0d6efd;
    --secondary:#198754;
    --light:#f5f7fb;
    --dark:#1f2937;
    --border:#e5e7eb;
    --radius:18px;
    --shadow:0 15px 40px rgba(0,0,0,.08);
}

body{
    background:linear-gradient(135deg,#eef4ff,#f8fffb);
}

.register-wrapper{
    padding:70px 0;
}

.register-header{
    text-align:center;
    margin-bottom:40px;
}

.register-header h1{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
}

.register-header p{
    color:#6b7280;
    font-size:18px;
}

.register-card{
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.left-panel{
    background:linear-gradient(135deg,#0d6efd,#198754);
    color:#fff;
    padding:50px;
    height:100%;
}

.left-panel h3{
    font-weight:700;
    margin-bottom:25px;
}

.left-panel ul{
    list-style:none;
    padding:0;
}

.left-panel li{
    margin:18px 0;
    font-size:17px;
}

.left-panel li i{
    margin-right:10px;
}

.right-panel{
    padding:45px;
}

.progress-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.step{
    flex:1;
    text-align:center;
    position:relative;
}

.step:not(:last-child)::after{
    content:"";
    position:absolute;
    top:18px;
    left:55%;
    width:90%;
    height:3px;
    background:#d1d5db;
}

.step-circle{
    width:38px;
    height:38px;
    border-radius:50%;
    margin:auto;
    background:#d1d5db;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    position:relative;
    z-index:2;
}

.step.active .step-circle{
    background:#0d6efd;
}

.step.completed .step-circle{
    background:#198754;
}

.step-title{
    margin-top:8px;
    font-size:13px;
    font-weight:600;
}

.form-section{
    display:none;
}

.form-section.active{
    display:block;
}

.form-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
}

.form-control,
.form-select{
    border-radius:12px;
    padding:12px 15px;
}

.form-control:focus,
.form-select:focus{
    border-color:#0d6efd;
    box-shadow:none;
}

.upload-box{
    border:2px dashed #cbd5e1;
    border-radius:16px;
    padding:35px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
}

.upload-box:hover{
    border-color:#0d6efd;
    background:#f8fbff;
}

.skill-card{
    border:2px solid #e5e7eb;
    border-radius:16px;
    padding:18px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    margin-bottom:15px;
}

.skill-card:hover{
    border-color:#0d6efd;
    transform:translateY(-4px);
}

.skill-card.selected{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
}

.navigation{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
}

.btn-next,
.btn-prev{
    border:none;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-next{
    background:#0d6efd;
    color:#fff;
}

.btn-prev{
    background:#6b7280;
    color:#fff;
}

.summary-box{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
}

@media(max-width:991px){
    .left-panel{
        display:none;
    }
    .right-panel{
        padding:25px;
    }
    .register-header h1{
        font-size:32px;
    }
    .progress-container{
        overflow-x:auto;
        gap:10px;
    }
    .step{
        min-width:80px;
    }
}

@media(max-width:576px){
    .register-wrapper{
        padding:30px 0;
    }
    .form-title{
        font-size:22px;
    }
    .navigation{
        flex-direction:column;
        gap:10px;
    }
    .btn-next,.btn-prev{
        width:100%;
    }
}
