.qrn-form-toast {
    position: fixed;
    z-index: 100000;
    right: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    gap: 14px;
    align-items: center;
    width: min(430px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(215, 168, 79, .42);
    border-radius: 18px;
    background: #111a17;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
    color: #fff;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .25s ease, transform .25s ease;
}

.qrn-form-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}
 
.qrn-form-toast__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0cc7a, #c88c2e);
    color: #111a17;
    font-size: 25px;
    font-weight: 700;
}

.qrn-form-toast__content strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
}

.qrn-form-toast__content span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
}

.qrn-form-toast__close {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, .65);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.qrn-form-toast__close:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

@media (max-width: 600px) {
    .qrn-form-toast {
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qrn-form-toast {
        transition: none;
    }
}
