    .errortoast {
        display: block;
        font-size: 2rem;
        font-weight: 500;
        line-height: 2.8rem;
        color: #f04438;
        font-family: "Poppins", sans-serif;
    }

    .toast {
        width: 100%;
        max-width: 680px;
        text-align: center;
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px;
        border-radius: 4px;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        background-color: #F04438;
        /* Error color */
    }

    .toast.show {
        opacity: 1;
    }
