*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#0f172a;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
}

.apply-container{
    width:100%;
    max-width:500px;
}

.apply-card{
    background:#1e293b;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.apply-card h1{
    color:#fff;
    text-align:center;
    margin-bottom:10px;
    font-size:30px;
}

.subtitle{
    color:#cbd5e1;
    text-align:center;
    margin-bottom:25px;
}

.progress{
    width:100%;
    height:10px;
    background:#334155;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:25px;
}

.progress-bar{
    width:50%;
    height:100%;
    background:#facc15;
    transition:.4s;
}

h2{
    color:#facc15;
    margin-bottom:20px;
    font-size:18px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    color:#fff;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group select{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#334155;
    color:#fff;
    font-size:15px;
    outline:none;
}

.form-group input::placeholder{
    color:#94a3b8;
}

.btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#facc15;
    color:#111827;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    background:#eab308;
}

.button-group{
    display:flex;
    gap:10px;
}

.button-group .btn{
    flex:1;
}

.btn-secondary{
    background:#475569;
    color:#fff;
}

.btn-secondary:hover{
    background:#64748b;
}

@media(max-width:600px){

    .apply-card{
        padding:22px;
    }

    .apply-card h1{
        font-size:25px;
    }

    .button-group{
        flex-direction:column;
    }
}