.mplus-company-profile{
    max-width:1100px;
    margin:40px auto;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
}

.mplus-profile-header{
    display:flex;
    align-items:center;
    gap:30px;
    padding:35px;
    background:linear-gradient(135deg,#0B5ED7,#198754);
    color:#fff;
}

.mplus-profile-logo{
    width:140px;
    height:140px;
    flex:0 0 140px;
}

.mplus-profile-logo img{
    width:100%;
    height:100%;
    display:block;
    border-radius:50%;
    object-fit:cover;
    background:#fff;
    border:5px solid #fff;
}

.mplus-no-logo{
    width:100%;
    height:100%;
    border-radius:50%;
    background:#fff;
    color:#198754;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.mplus-profile-info h1{
    margin:0 0 12px;
    font-size:38px;
    font-weight:800;
}

.mplus-profile-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:20px;
    background:#fff;
    color:#198754;
    font-weight:700;
    margin-bottom:15px;
}

.mplus-rating{
    margin-top:15px;
    font-size:22px;
    color:#FFD43B;
}

.mplus-profile-nav{
    display:flex;
    gap:15px;
    padding:20px 35px;
    border-bottom:1px solid #e5e5e5;
    flex-wrap:wrap;
}

.mplus-profile-nav a{
    text-decoration:none;
    background:#198754;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
}

.mplus-profile-nav a:hover{
    background:#146c43;
}

.mplus-profile-section{
    padding:35px;
}

.mplus-profile-section h2{
    margin-top:0;
    font-size:28px;
    color:#0B5ED7;
}

/* ==========================================================
   MedichPlus Authentication Portal
========================================================== */

.mplus-account-page{
    max-width:1200px;
    margin:60px auto;
    display:grid;
    grid-template-columns:1fr 480px;
    gap:50px;
    align-items:center;
    padding:20px;
}

.mplus-account-left{

    background:linear-gradient(135deg,#0B5ED7,#198754);
    color:#fff;
    padding:60px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.mplus-account-left h1{

    font-size:48px;
    font-weight:900;
    margin-bottom:15px;

}

.mplus-account-subtitle{

    font-size:22px;
    opacity:.95;
    margin-bottom:40px;

}

.mplus-feature{

    background:rgba(255,255,255,.12);
    padding:18px 22px;
    margin-bottom:18px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    font-size:17px;
    font-weight:600;

}

.mplus-account-right{

    display:flex;
    justify-content:center;

}

.mplus-account-card{

    width:100%;
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.mplus-account-tabs{

    display:flex;
    margin-bottom:35px;
    background:#eef3f8;
    border-radius:50px;
    padding:6px;

}

.mplus-tab-btn{

    flex:1;
    border:none;
    background:transparent;
    padding:16px;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
    transition:.3s;

}

.mplus-tab-btn:hover{

    background:#dce9f8;

}

.mplus-tab-btn.active{

    background:linear-gradient(135deg,#0B5ED7,#198754);
    color:#fff;

}

.mplus-tab-content{

    animation:mplusFade .35s ease;

}

@keyframes mplusFade{

    from{

        opacity:0;
        transform:translateY(10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@media(max-width:900px){

.mplus-account-page{

    grid-template-columns:1fr;

}

.mplus-account-left{

    text-align:center;
    padding:40px;

}

.mplus-account-left h1{

    font-size:36px;

}

}