/* Auth content inside .mcp-auth-card */
.mcp-auth-content{
    width:100%;
}

.mcp-auth-header{
    text-align:center;
    padding:6px 8px 8px;
    margin-bottom:16px;
}

.mcp-auth-header-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(37,99,235,.10);
    color:#1d4ed8;
    border:1px solid rgba(37,99,235,.18);
    font-weight:800;
    font-size:13px;
    margin-bottom:10px;
}

.mcp-auth-header h2{
    margin:0 0 8px;
    font-size:22px;
    font-weight:900;
    color:#0f172a;
}

.mcp-auth-header p{
    margin:0;
    color:#64748b;
    font-size:13px;
    line-height:1.9;
}

/* Tabs */
.mcp-auth-tabs{
    display:flex;
    gap:8px;
    background:#f1f5f9;
    padding:6px;
    border-radius:16px;
    margin:14px 0 16px;
}

.mcp-tab-btn{
    flex:1;
    border:none;
    background:transparent;
    border-radius:12px;
    padding:12px 14px;
    cursor:pointer;
    transition:.2s ease;
    color:#334155;
    font-weight:800;
    font-size:14px;
}

.mcp-tab-btn.active{
    background:#fff;
    color:#1d4ed8;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.mcp-auth-body{
    padding:4px 0 0;
}

.mcp-tab-panel{
    display:none;
}

.mcp-tab-panel.active{
    display:block;
}

/* Form spacing (input/button base is from mcp-app.css) */
.mcp-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.mcp-form-row{
    display:flex;
    gap:12px;
}

.mcp-form-group{
    width:100%;
}

.mcp-form-group label{
    display:block;
    margin-bottom:8px;
    color:#1e293b;
    font-size:14px;
    font-weight:800;
}

/* CTA button (استایل پایه از mcp-app.css میاد) */
.mcp-btn-primary{
    width:100%;
    min-height:52px;
}

/* alert spacing inside card */
.mcp-auth-content .mcp-alert{
    margin:10px 0 0;
}

/* Responsive */
@media (max-width: 640px) {
    .mcp-form-row{
        flex-direction:column;
        gap:0;
    }

    .mcp-auth-header h2{
        font-size:20px;
    }
}
