/* =========================================================
   FLASH MESSAGE
========================================================= */

.cms-flash-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    padding:40px 20px;
    box-sizing:border-box;
}

.cms-flash{
    width:100%;
    max-width:720px;
    background:#f3e8ff;
    border:1px solid #d8b4fe;
    border-radius:24px;
    padding:28px;
    display:flex;
    gap:20px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    animation:flashFade .4s ease;
}

.cms-flash__icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:50%;
    background:#7c3aed;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:700;
}

.cms-flash__title{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:6px;
}

.cms-flash__text{
    font-size:16px;
    line-height:1.6;
    color:#4b5563;
}

@keyframes flashFade{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}