:root{

    --primary:#355bbd;
    --primary-hover:#1d4ed8;

    --bg:#f5f8fd;

    --card:#ffffff;

    --border:#e6edf7;

    --text:#1e293b;

    --muted:#64748b;

    --shadow:0 12px 30px rgba(15,23,42,.08);

    --radius:20px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--bg);
    color:var(--text);
}

.register-header{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;

    padding:30px 0;

    box-shadow:var(--shadow);

}

.header-left h2{
    font-size:32px;
    font-weight:700;
    letter-spacing:.3px;
}

.header-left span{
    font-size:15px;
    opacity:.9;
}

.card-form{
    background:var(--card);
    border-radius:var(--radius);
    border:1px solid var(--border);
    padding:35px;
    box-shadow:var(--shadow);
    transition:.35s;
}

.card-form:hover{
    transform:translateY(-6px);
    box-shadow:
    0 20px 45px rgba(37,99,235,.12);
}

.card-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:600;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #ececec;
    color:#222;
}

.card-title i{
    color:var(--primary);
}

label{
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
    color:#444;
    display:block;
}

.form-control,
.form-select{
    height:54px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#fff;
    transition:.3s;
}

textarea.form-control{
    height:120px;
    resize:none;
    padding-top:12px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:
    0 0 0 .18rem
    rgba(37,99,235,.15);
}

.btn-success{
    background:var(--primary);
    border:none;
    border-radius:14px;
    height:54px;
    font-weight:600;
}

.btn-success:hover{
    background:var(--primary-hover);
}

.btn-secondary{
    height:54px;
    padding:0 28px;
    border-radius:14px;
    font-weight:600;
}

.btn-outline-light{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
    border-radius:14px;
}

.alert{
    border-radius:12px;
}

input[type=file]{
    padding:11px;
}

.register-wrapper{
padding-bottom:60px;
}

@media(max-width:992px){
.card-form{
padding:22px;
}
.header-left h2{
font-size:22px;
}
}

@media(max-width:768px){
.register-header .container{
flex-direction:column;
align-items:flex-start!important;
gap:15px;
}
.btn-outline-light{
width:100%;
}
.card-title{
font-size:18px;
}
}

.step-wrapper{
display:flex;
align-items:center;
justify-content:center;
margin-bottom:35px;
}

.step{
display:flex;
align-items:center;
gap:15px;
background:#fff;
padding:15px 22px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.step.active{
background:#17a954;
color:#fff;
}

.step.active small{
color:#e9ffe9;
}

.step-icon{
width:48px;
height:48px;
border-radius:50%;
background:#17a954;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
}

.step.active .step-icon{
background:#fff;
color:#17a954;
}

.step-line{
width:80px;
height:4px;
background:#d8d8d8;
margin:0 12px;
border-radius:30px;
}

.step-text h6{
margin:0;
font-size:15px;
font-weight:600;
}

.step-text small{
color:#777;
}

.collapse-btn{
width:38px;
height:38px;
border:none;
background:#eef8f2;
border-radius:10px;
color:#17a954;
transition:.3s;
}

.collapse-btn:hover{
background:#17a954;
color:#fff;
}

.floating-button{
display:flex;
justify-content:flex-end;
gap:15px;
margin-top:35px;
}

.card-form{
transition:.35s;
}

.card-form:hover{
transform:translateY(-3px);
box-shadow:0 18px 35px rgba(0,0,0,.10);
}

/* ==========================================================
   RESPONSIVE MOBILE
========================================================== */

@media (max-width: 768px){

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .register-header{
        padding:18px 0;
    }

    .header-left h2{
        font-size:18px;
    }

    .header-left span{
        font-size:13px;
    }

    .card-form{
        padding:18px;
        border-radius:16px;
    }

    .card-title{
        display:flex;
        flex-direction:column;
        align-items:flex-start !important;
        gap:15px;
        margin-bottom:20px;
    }

    .card-title>div{
        width:100%;
    }

    .card-title .btn{
        width:100%;
    }

    .floating-button{
        flex-direction:column;
    }

    .floating-button .btn{
        width:100%;
    }

    .btn-success,
    .btn-secondary{
        width:100%;
        height:48px;
    }

    .form-control,
    .form-select{
        height:48px;
    }

    textarea.form-control{
        height:100px;
    }

    .step-wrapper{
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:10px;
        gap:10px;

        scrollbar-width:none;
    }

    .step-wrapper::-webkit-scrollbar{
        display:none;
    }

    .step{
        min-width:220px;
        flex-shrink:0;
    }

    .step-line{
        display:none;
    }

}

/* ======================================================
   MODERN WIZARD
====================================================== */
.wizard{
    margin-bottom:40px;
}

.wizard-progress{
    width:100%;
    height:6px;
    background:#e2e8f0;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:25px;
}

.wizard-progress-bar{
    width:33.33%;
    height:100%;
    background:linear-gradient(
        90deg,
        #2563eb,
        #3b82f6
    );
    transition:.35s;
}

.wizard-items{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wizard-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    flex:1;
}

.wizard-circle{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#dbeafe;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.wizard-label{
    font-size:14px;
    font-weight:600;
    color:#64748b;
}

.wizard-item.active .wizard-circle{
    background:#2563eb;
    color:#fff;
    box-shadow:0 10px 20px rgba(37,99,235,.25);
}

.wizard-item.active .wizard-label{
    color:#2563eb;
}

/*======================================
STEP CARD
======================================*/

.section-header{

display:flex;

align-items:center;

margin-bottom:35px;

}

.section-left{

display:flex;

align-items:center;

gap:18px;

}

.section-icon{

width:65px;

height:65px;

border-radius:18px;

background:#dbeafe;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

color:#2563eb;

}

.section-header h4{

margin:0;

font-size:24px;

font-weight:700;

color:#1e293b;

}

.section-header p{

margin-top:6px;

margin-bottom:0;

color:#64748b;

}

.form-label{

font-weight:600;

font-size:14px;

margin-bottom:8px;

color:#334155;

}

.form-control,
.form-select{

height:55px;

border-radius:14px;

border:1px solid #dbe4f0;

padding:12px 16px;

}

textarea.form-control{

height:auto;

min-height:130px;

resize:none;

}

.form-control:focus,
.form-select:focus{

border-color:#2563eb;

box-shadow:0 0 0 .2rem rgba(37,99,235,.15);

}

.btn-next{

height:52px;

min-width:180px;

border-radius:14px;

font-weight:600;

}

@media(max-width:768px){

.section-header{

margin-bottom:25px;

}

.section-left{

align-items:flex-start;

}

.section-icon{
width:55px;
height:55px;
font-size:20px;
}
.section-header h4{
font-size:20px;
}
.btn-next{
width:100%;
}

}

.btn-nav{

    min-width:180px;

    height:52px;

    border-radius:14px;

    font-weight:600;

}

.btn-outline-secondary{

    border:1px solid #cbd5e1;

    color:#334155;

}

.btn-outline-secondary:hover{

    background:#334155;

    color:#fff;

}

@media(max-width:768px){

.btn-nav{

    width:100%;

}

}

/*=================================
UPLOAD
=================================*/

.upload-card{

    margin-top:20px;

}

.upload-area{

    width:100%;

    min-height:260px;

    border:2px dashed #93c5fd;

    border-radius:20px;

    background:#f8fbff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.3s;

    padding:30px;

}

.upload-area:hover{

    background:#eef6ff;

    border-color:#2563eb;

}

.upload-area i{

    font-size:55px;

    color:#2563eb;

    margin-bottom:20px;

}

.upload-area h5{

    font-weight:700;

    color:#1e293b;

}

.upload-area span{

    color:#64748b;

    text-align:center;

}

.preview-foto{

    display:block;

    margin:30px auto 0;

    width:220px;

    height:220px;

    border-radius:18px;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

@media(max-width:768px){

.upload-area{

min-height:220px;

}

.preview-foto{

width:170px;

height:170px;

}

}

.logo-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.logo-header{
    width:48px;
    height:48px;
    object-fit:contain;
}

/* ==========================================================
   PENDAFTARAN
========================================================== */

.pendaftaran-card{
    background:#ffffff;
    border:1px solid #e4edf4;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(15,23,42,.04);
}

.pendaftaran-header{
    padding:24px 28px;
    border-bottom:1px solid #e8eef3;
}

.pendaftaran-header h3{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 6px;
    color:#172033;
    font-size:22px;
    font-weight:700;
}

.pendaftaran-header h3 i{
    color:var(--primary);
}

.pendaftaran-header p{
    margin:0;
    color:#718096;
    font-size:13.5px;
}

.pendaftaran-body{
    padding:28px;
}

@media (max-width:700px){

    .pendaftaran-header,
    .pendaftaran-body{
        padding:20px;
    }

}

.table-responsive{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.table-responsive table{
    min-width:900px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    cursor: pointer;
}

.action-delete {
    background: #ef4444;
    color: #fff;
}

.action-delete:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220,38,38,.25);
}

.action-success {
    background: #22c55e;
    color: #fff;
}

.action-success:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34,197,94,.25);
}

.action-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 42px;
    height: 42px;

    padding: 0;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    background: #fff;

    transition: .25s ease;
}

.action-btn i {
    font-size: 15px;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-detail {
    width: 95px;
    height: 42px;

    border: 1px solid #4dabf7;
    color: #1c7ed6;

    gap: 8px;
}

.action-detail:hover {
    background: #1c7ed6;
    color: #fff;
}

.action-success {
    width: 42px;
    height: 42px;

    border: 1px solid #40c057;
    color: #2b8a3e;
}

.action-success:hover {
    background: #2b8a3e;
    color: #fff;
}

.action-danger {
    width: 42px;
    height: 42px;

    border: 1px solid #fa5252;
    color: #e03131;
}

.action-danger:hover {
    background: #e03131;
    color: #fff;
}

.action-delete {
    width: 95px;
    height: 42px;

    border: 1px solid #fd7e14;
    color: #e8590c;
}

.action-delete:hover {
    background: #e8590c;
    color: #fff;
}

.action-icon {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
}

.action-icon i {
    font-size: 16px;
}

@media (max-width: 768px) {

    .action-group {
        gap: 6px;
    }

    .action-btn {
        min-width: 38px;
        width: 38px;
        height: 38px;
        padding: 0;
    }

    .action-btn span {
        display: none;
    }

    .action-btn i {
        font-size: 14px;
    }

}