.registration-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    animation: slideIn 0.3s ease-out forwards;
}

.registration-notification.success {
    background-color: #4caf50;
    color: white;
}

.registration-notification.error {
    background-color: #f44336;
    color: white;
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-message i {
    font-size: 20px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}