.modern-user-wrapper{
    padding:22px;
}

.modern-user-header{
    background:linear-gradient(
        135deg,
        #0c3b68,
        #1788c7
    );
    border-radius:24px;
    padding:24px;
    display:flex;
    justify-content:space-between;
    gap:18px;
    margin-bottom:22px;
    flex-wrap:wrap;
    color:#fff;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.modern-user-tag{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.modern-user-title{
    font-size:clamp(1.8rem,2.8vw,3rem);
    line-height:1.05;
    font-weight:700;
    margin-bottom:12px;
}

.modern-user-description{
    max-width:760px;
    line-height:1.6;
    color:rgba(255,255,255,.88);
    font-size:.92rem;
    font-weight:500;
}

.modern-user-stat{
    min-width:180px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    padding:22px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.modern-user-stat-number{
    font-size:2.2rem;
    font-weight:700;
    line-height:1;
}

.modern-user-stat-label{
    margin-top:6px;
    font-size:.88rem;
    font-weight:500;
    opacity:.9;
}

.modern-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.modern-card{
    background:#fff;
    border:1px solid #dce7f1;
    border-radius:22px;
    padding:22px;
    box-shadow:0 8px 24px rgba(10,60,120,.05);
}

.modern-card-title{
    color:#154776;
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:18px;
}

.modern-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.modern-group{
    display:flex;
    flex-direction:column;
}

.modern-group label{
    color:#154776;
    font-size:.82rem;
    font-weight:600;
    margin-bottom:6px;
}

.modern-input,
.modern-select,
.modern-file{
    height:48px;
    border:1px solid #d9e5ef;
    border-radius:14px;
    padding:0 14px;
    font-size:.9rem;
    font-weight:500;
    color:#154776;
    outline:none;
    background:#f8fbfe;
    transition:.2s ease;
}

.modern-file{
    padding:10px 12px;
    height:auto;
}

.modern-input:focus,
.modern-select:focus{
    border-color:#1680be;
    box-shadow:0 0 0 3px rgba(22,128,190,.10);
}

.modern-preview{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:16px;
    border:1px solid #dce7f1;
    margin-top:10px;
    cursor:pointer;
}

.modern-submit-wrap{
    margin-top:22px;
    display:flex;
    justify-content:flex-end;
}

.modern-submit-btn{
    height:50px;
    padding:0 24px;
    border:none;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        #0d6ea9,
        #1f91ce
    );
    color:#fff;
    font-size:.92rem;
    font-weight:700;
    box-shadow:0 10px 24px rgba(13,110,169,.18);
    transition:.2s ease;
}

.modern-submit-btn:hover{
    transform:translateY(-1px);
}

@media(max-width:1100px){

    .modern-grid{
        grid-template-columns:1fr;
    }

    .modern-form-grid{
        grid-template-columns:1fr;
    }

    .modern-user-header{
        padding:20px;
    }

    .modern-card{
        padding:18px;
    }

}