.notify {
    position: fixed;
    right: -300px;
    top: 20px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all .35s ease;
    z-index: 99999;
    opacity: 0;
}

.notify.show {
    right: 20px;
    opacity: 1;
}

.notify.success {
    background: #4CAF50;
}

.notify.error {
    background: #d33;
}

.notify.info {
    background: #007bff;
}
