#user-toast {
    position: fixed;
    inset: 24px auto auto 50%;
    margin: 0;
    width: max-content;
    max-width: min(560px, calc(100vw - 36px));
    border: 1px solid #375478;
    border-left: 5px solid #65a2ff;
    background: #14243a;
    color: #fff;
    padding: 15px 22px 15px 49px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .1px;
    box-shadow: 0 18px 55px #08142680, 0 4px 14px #08142655;
    opacity: 0;
    transform: translate(-50%, -18px) scale(.97);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    z-index: 2147483647;
}

#user-toast::before {
    content: "!";
    position: absolute;
    left: 17px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #65a2ff;
    color: #10223a;
    font-size: 14px;
    font-weight: 800;
    transform: translateY(-50%);
}

#user-toast.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

@media (max-width: 600px) {
    #user-toast {
        top: 14px;
        font-size: 14px;
        padding: 13px 17px 13px 44px;
    }
}
