*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:
    linear-gradient(rgba(5,10,25,0.92),rgba(5,10,25,0.92)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2070');
    background-size:cover;
    background-position:center;
    min-height:100vh;
    padding:40px 0;
}

.form-wrapper{
    width:95%;
    max-width:1200px;
    margin:auto;
    margin-top:40px;
}

.glass-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(14px);
    border-radius:25px;
    padding:45px;
    box-shadow:0 8px 40px rgba(0,0,0,0.35);
}

.logo-title{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.subtitle{
    color:#cbd5e1;
    margin-bottom:35px;
    font-size:16px;
}

.progress-container{
    width:100%;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:50px;
    overflow:hidden;
    margin-bottom:40px;
}

.progress-bar-custom{
    height:100%;
    width:20%;
    background:linear-gradient(90deg,#00c6ff,#0072ff);
    border-radius:50px;
    transition:0.4s;
}

.step-title{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:25px;
}

.form-label{
    color:#fff;
    font-weight:500;
    margin-bottom:8px;
}

.form-control,
.form-select{
    height:52px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:12px 18px;
}

.form-control:focus,
.form-select:focus{
    background:rgba(255,255,255,0.18);
    box-shadow:none;
    color:#fff;
}

.form-control::placeholder{
    color:#ddd;
}

.form-select option{
    color:#000;
}

.form-section{
    display:none;
}

.form-section.active{
    display:block;
}

.next-btn,
.prev-btn,
.submit-btn{
    padding:14px 35px;
    border:none;
    border-radius:12px;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

.next-btn{
    background:linear-gradient(90deg,#00c6ff,#0072ff);
    color:#fff;
}

.prev-btn{
    background:#64748b;
    color:#fff;
}

.submit-btn{
    background:linear-gradient(90deg,#00b894,#00cec9);
    color:#fff;
}

.next-btn:hover,
.submit-btn:hover{
    transform:translateY(-3px);
}

.step-indicator{
    display:flex;
    justify-content:space-between;
    margin-bottom:35px;
}

.step{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.step.active{
    background:linear-gradient(90deg,#00c6ff,#0072ff);
}

.upload-box{
    border:2px dashed rgba(255,255,255,0.25);
    border-radius:15px;
    padding:25px;
    text-align:center;
    color:#fff;
}

.payment-box{
    background:rgba(255,255,255,0.1);
    border-radius:20px;
    padding:25px;
}

.amount{
    color:#00ffb3;
    font-size:38px;
    font-weight:700;
}

@media(max-width:768px){

    .glass-card{
        padding:25px;
    }

    .logo-title{
        font-size:28px;
    }

}