.msg {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1rem;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: rgb(59 130 246 / 1);
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: -300px;
    top: 80px;
    font-size: 17px;
    transition: visibility 0s, opacity 0.5s ease-out, right 0.5s ease-out;
    opacity: 0;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    right: 20px;
}


