.toast{
    position:fixed;
    top:25px;
    right:25px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 22px;
    min-width:280px;
    border-radius:14px;
    color:#fff;
    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    opacity:0;
    transform:translateX(120%);
    transition:.35s ease;
    z-index:999999;
}
.toast.show{
    opacity:1;
    transform:translateX(0);
}
.toast.success{
    background:#16a34a;
}
.toast.error{
    background:#dc2626;
}
.toast i{
    font-size:20px;
}