*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#021526,#03346E,#0F172A);
    min-height:100vh;
}

/* LEFT PANEL */

.left-panel{
    background:rgba(255,255,255,0.03);
    border-right:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:30px;
    color:#fff;
}

.brand-section{
    text-align:center;
    margin-bottom:40px;
}

.logo-icon{
    width:70px;
    height:70px;
    background:#00D4AA;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:15px;
    font-size:30px;
    color:#021526;
}

.brand-section h2{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.brand-section p{
    opacity:.8;
    font-size:14px;
}

/* QR SECTION */

.qr-section{
    text-align:center;
}

.qr-box{
    width:180px;
    height:180px;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-weight:700;
    margin:auto;
}

.qr-section h6{
    color:#fff;
}

.qr-section p{
    color:#adb5bd;
}

/* RIGHT PANEL */

.right-panel{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* REGISTER CARD */

.register-card{
    width:100%;
    max-width:500px;
    background:#0B1F3A;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:30px;
    color:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.30);
}

.register-card h3{
    font-weight:700;
}

/* STEP HEADER */

.step-header{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.step{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1d3557;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:600;
}

.step.active{
    background:#00D4AA;
    color:#021526;
}

.step-line{
    width:50px;
    height:2px;
    background:#1d3557;
}

/* FORM */

.form-label{
    font-size:14px;
    margin-bottom:6px;
}

.form-control,
.form-select{
    height:46px;
    background:#08162B;
    border:1px solid #1c3358;
    color:#fff;
}

.form-control:focus,
.form-select:focus{
    background:#08162B;
    color:#fff;
    border-color:#00D4AA;
    box-shadow:none;
}

.form-select option{
    color:#000;
}

/* BUTTONS */

.btn-next{
    background:#00D4AA;
    border:none;
    color:#021526;
    font-weight:700;
    height:46px;
}

.btn-next:hover{
    background:#00c49d;
    color:#021526;
}

.btn-back{
    background:#1d3557;
    border:none;
    color:#fff;
    height:46px;
}

.btn-back:hover{
    background:#274c77;
    color:#fff;
}

/* LOGIN LINK */

.register-card a{
    color:#00D4AA;
    text-decoration:none;
    font-weight:600;
}

.register-card a:hover{
    color:#00c49d;
}

/* MOBILE */

@media(max-width:991px){

    .left-panel{
        display:none;
    }

    .register-card{
        max-width:100%;
        padding:25px;
    }

}

@media(max-width:576px){

    .register-card{
        padding:20px;
    }

    .step-line{
        width:30px;
    }

    .qr-box{
        width:140px;
        height:140px;
    }

}